diff --git a/apps/store/src/components/DebugDialog/DefaultDebugDialog.tsx b/apps/store/src/components/DebugDialog/DefaultDebugDialog.tsx new file mode 100644 index 0000000000..ba3309d4a5 --- /dev/null +++ b/apps/store/src/components/DebugDialog/DefaultDebugDialog.tsx @@ -0,0 +1,10 @@ +import { DebugDialog } from '@/components/DebugDialog/DebugDialog' +import { DebugShopSessionSection } from '@/components/DebugDialog/DebugShopSessionSection' + +export const DefaultDebugDialog = () => { + return ( + + + + ) +} diff --git a/apps/store/src/pages/[[...slug]].tsx b/apps/store/src/pages/[[...slug]].tsx index 6c07508e74..426a1c5b1d 100644 --- a/apps/store/src/pages/[[...slug]].tsx +++ b/apps/store/src/pages/[[...slug]].tsx @@ -1,5 +1,6 @@ import { StoryblokComponent, useStoryblokState } from '@storyblok/react' import { type GetStaticPaths, type GetStaticProps, type NextPageWithLayout } from 'next' +import { DefaultDebugDialog } from '@/components/DebugDialog/DefaultDebugDialog' import { HeadSeoInfo } from '@/components/HeadSeoInfo/HeadSeoInfo' import { fetchBreadcrumbs } from '@/components/LayoutWithMenu/fetchBreadcrumbs' import { getLayoutWithMenuProps } from '@/components/LayoutWithMenu/getLayoutWithMenuProps' @@ -48,6 +49,7 @@ const NextStoryblokPage = (props: NextContentPageProps) => { + ) } diff --git a/apps/store/src/pages/manypets/[[...slug]].tsx b/apps/store/src/pages/manypets/[[...slug]].tsx index cc1131628e..a1e6f4cf87 100644 --- a/apps/store/src/pages/manypets/[[...slug]].tsx +++ b/apps/store/src/pages/manypets/[[...slug]].tsx @@ -1,6 +1,7 @@ import { StoryblokComponent, useStoryblokState } from '@storyblok/react' import { GetStaticPaths, GetStaticProps } from 'next' import { serverSideTranslations } from 'next-i18next/serverSideTranslations' +import { DefaultDebugDialog } from '@/components/DebugDialog/DefaultDebugDialog' import { HeadSeoInfo } from '@/components/HeadSeoInfo/HeadSeoInfo' import { STORYBLOK_MANYPETS_FOLDER_SLUG } from '@/features/manyPets/manyPets.constants' import { getStoryBySlug, PageStory, StoryblokQueryParams } from '@/services/storyblok/storyblok' @@ -18,6 +19,7 @@ const ManyPetsCmsPage = ({ story: initialStory }: PageProps) => { <> + ) }