Skip to content

Commit

Permalink
Rename store/collections.module.scss to be consistent with other chan…
Browse files Browse the repository at this point in the history
…ges in PR
  • Loading branch information
SheepTester committed Jan 21, 2024
1 parent 846638c commit aefaaff
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/store/collection/[uuid].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { CookieService, PermissionService } from '@/lib/services';
import { PrivateProfile, PublicMerchCollection } from '@/lib/types/apiResponses';
import { CookieType } from '@/lib/types/enums';
import { getDefaultMerchItemPhoto } from '@/lib/utils';
import styles from '@/styles/pages/store/collections.module.scss';
import styles from '@/styles/pages/StoreCollectionPage.module.scss';
import { GetServerSideProps } from 'next';

interface CollectionProps {
Expand Down Expand Up @@ -35,7 +35,7 @@ const CollectionsPage = ({
<ItemCard
image={getDefaultMerchItemPhoto(item)}
title={item.itemName}
href={`${config.itemRoute}${item.uuid}`}
href={`${config.store.itemRoute}${item.uuid}`}
cost={item.options[0]?.price ?? 0}
key={item.uuid}
/>
Expand Down

0 comments on commit aefaaff

Please sign in to comment.