Skip to content

Commit

Permalink
fix: image link in sportCreator
Browse files Browse the repository at this point in the history
  • Loading branch information
1nayu committed Oct 30, 2024
1 parent 54a57a1 commit 356eb2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/sports/sportCreator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default function SportCreator() {
>
{images.map((image) => (
<MenuItem key={image.id} value={image.id}>
<Avatar src={image.data}/>
<Avatar src={`${process.env.NEXT_PUBLIC_API_URL}/images/${image.id}/file`}/>
{image.id}
</MenuItem>
))}
Expand Down

0 comments on commit 356eb2f

Please sign in to comment.