Skip to content

Commit

Permalink
Fix incorrect symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-hacker committed Oct 27, 2023
1 parent 164fab6 commit 354fdbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/routes/sophie/items/detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function ItemDetail(): JSX.Element {
return (
<>
<h1>{itemDisplayName(item)}</h1>
{item.img_no !== null && item.image_no >= 0 && (
{item.image_no !== null && item.image_no >= 0 && (
<img src={getImageLink(`items/${item.image_no}.png`)}></img>
)}
<ItemDetailSection item={item} />
Expand Down

0 comments on commit 354fdbb

Please sign in to comment.