fix: remove the lonely zero

This commit is contained in:
GyDi 2022-04-06 22:48:10 +08:00
parent 0ff2fcac11
commit 9902003da9
No known key found for this signature in database
GPG Key ID: 1C95E0D3467B3084

View File

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