diff --git a/src/components/profile-data-table.tsx b/src/components/profile-data-table.tsx index 4e795b5..3a3d073 100644 --- a/src/components/profile-data-table.tsx +++ b/src/components/profile-data-table.tsx @@ -250,9 +250,9 @@ const TagsCell = React.memo<{ return (
- {hiddenCount > 0 ? ( - - {ButtonContent} + + {ButtonContent} + {hiddenCount > 0 && (
{effectiveTags.map((t) => ( @@ -266,10 +266,8 @@ const TagsCell = React.memo<{ ))}
-
- ) : ( - ButtonContent - )} + )} +
); }