Skip to content

Commit

Permalink
fix coutnry flags on collections page
Browse files Browse the repository at this point in the history
  • Loading branch information
qgerome committed Apr 20, 2022
1 parent 32be2dc commit d9c95c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/collections/[collectionId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const CollectionPage = () => {
<img
alt="Country flag"
className="h-3"
src={`http://localhost:8000/static/flags/${collection.locationCode}.gif`}
src={`/static/flags/${collection.locationCode}.gif`}
/>
{collection.location}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/collections/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const CollectionsPage = () => {
<img
alt="Country flag"
className="h-3"
src={`http://localhost:8000/static/flags/${collection.locationCode}.gif`}
src={`/static/flags/${collection.locationCode}.gif`}
/>
{collection.location}
</div>
Expand Down

0 comments on commit d9c95c4

Please sign in to comment.