Skip to content

Commit

Permalink
show name
Browse files Browse the repository at this point in the history
  • Loading branch information
bend-n committed Mar 7, 2024
1 parent d8e6d0d commit 5574dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ExplorerTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function ExplorerTable({ users, columns }: BlocksTableProps) {
case "name":
return (
<div className="relative flex items-center gap-2">
<p>{user.name && user.symbol ? `${user.name} (${user.symbol})` : "-"}</p>
<p>{user.name ? (user.symbol ? `${user.name} (${user.symbol})` : user.name) : '-'}</p>
</div>
);
case "block":
Expand Down

0 comments on commit 5574dd1

Please sign in to comment.