Skip to content

Commit

Permalink
added stores breadcrumbs skeleton loader
Browse files Browse the repository at this point in the history
  • Loading branch information
chlebektomas committed Jan 20, 2025
1 parent b114ed7 commit dcd79ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions storefront/pages/stores/[storeSlug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ const StoreDetailPage: NextPage = () => {
return (
<CommonLayout
breadcrumbs={storeDetailData?.store?.breadcrumb}
breadcrumbsType="stores"
canonicalQueryParams={[]}
isFetchingData={isStoreFetching}
ogImageUrlDefault={storeImageUrl}
Expand Down
2 changes: 2 additions & 0 deletions storefront/types/friendlyUrl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const FriendlyPagesTypes = {
brandsOverview: 'front_brands_detail',
category: 'front_product_list',
product: 'front_product_detail',
stores: 'front_stores',
store: 'front_stores_detail',
flag: 'front_flag_detail',
seo_category: 'front_category_seo',
Expand All @@ -44,6 +45,7 @@ export const FriendlyPagesDestinations: Record<FriendlyPagesTypesKey, string> =
brandsOverview: '/brands-overview',
category: '/categories/[categorySlug]',
product: '/products/[productSlug]',
stores: '/stores',
store: '/stores/[storeSlug]',
flag: '/flags/[flagSlug]',
seo_category: '/categories/[categorySlug]',
Expand Down

0 comments on commit dcd79ab

Please sign in to comment.