Pārlūkot izejas kodu

fix: remove the lonely zero

GyDi 3 gadi atpakaļ
vecāks
revīzija
9902003da9
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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 || []} />
       )}