Browse Source

fix: remove the lonely zero

GyDi 3 năm trước cách đây
mục cha
commit
9902003da9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/pages/profiles.tsx

+ 1 - 1
src/pages/profiles.tsx

@@ -165,7 +165,7 @@ const ProfilePage = () => {
         ))}
       </Grid>
 
-      {enhanceItems.length && (
+      {enhanceItems.length > 0 && (
         <EnhancedMode items={enhanceItems} chain={profiles.chain || []} />
       )}