Skip to content

Commit

Permalink
fix: fix rendering issue in badge list
Browse files Browse the repository at this point in the history
  • Loading branch information
robinv8 committed Sep 19, 2024
1 parent b927953 commit eb595aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/pages/Admin/Badges/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const Badges: FC = () => {
</tr>
</thead>
<tbody className="align-middle">
{data?.list.map((badge) => (
{data?.list?.map((badge) => (
<tr key={badge.id}>
<td className="d-flex align-items-center">
{badge.icon?.startsWith('http') ? (
Expand Down

0 comments on commit eb595aa

Please sign in to comment.