From 9902003da9d606cf9b9253c2326b9e2d565d0f62 Mon Sep 17 00:00:00 2001
From: GyDi <segydi@foxmail.com>
Date: Wed, 6 Apr 2022 22:48:10 +0800
Subject: [PATCH] fix: remove the lonely zero

---
 src/pages/profiles.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pages/profiles.tsx b/src/pages/profiles.tsx
index 9519fef..d135362 100644
--- a/src/pages/profiles.tsx
+++ b/src/pages/profiles.tsx
@@ -165,7 +165,7 @@ const ProfilePage = () => {
         ))}
       </Grid>
 
-      {enhanceItems.length && (
+      {enhanceItems.length > 0 && (
         <EnhancedMode items={enhanceItems} chain={profiles.chain || []} />
       )}
 
-- 
GitLab