File tree Expand file tree Collapse file tree
app-hosts/web/src/providers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { StrictMode } from 'react' ;
22import { Provider } from 'jotai' ;
33import { QueryClientProvider , QueryClient } from '@tanstack/react-query' ;
4- import { ReactQueryDevtools } from '@tanstack/react-query-devtools' ;
4+ // import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
55
66const queryClient = new QueryClient ( {
77 defaultOptions : { queries : { retry : 5 , retryDelay : 1000 } } ,
@@ -12,7 +12,7 @@ export const AppProvider = ({ children }: { children: React.ReactNode }) => {
1212 < StrictMode >
1313 < QueryClientProvider client = { queryClient } >
1414 < Provider > { children } </ Provider >
15- < ReactQueryDevtools initialIsOpen = { false } />
15+ { /* <ReactQueryDevtools initialIsOpen={false} /> */ }
1616 </ QueryClientProvider >
1717 </ StrictMode >
1818 ) ;
Original file line number Diff line number Diff line change 11import { useState } from 'react' ;
22
3- import { SwitchTheme } from '@pokemon-pet-shop/feature-switch-theme' ;
3+ // import { SwitchTheme } from '@pokemon-pet-shop/feature-switch-theme';
44
55import { Box , Container , Image } from '@pokemon-pet-shop/ui-primitives' ;
6- import { Icon , HideInMobile } from '@pokemon-pet-shop/ui-components' ;
6+ // import { Icon, HideInMobile } from '@pokemon-pet-shop/ui-components';
77
88import { NavMobileModal } from '../modal-mobile-nav/nav-mobile' ;
99import { SideNavModal } from './side-nav-modal' ;
@@ -18,12 +18,12 @@ export const HeaderContent = () => {
1818 < NavMobileModal isOpen = { isNavModalOpen } onCloseModal = { ( ) => setIsNavModalOpen ( false ) } />
1919 < Container className = "flex w-full flex-row items-center justify-between" >
2020 < Box className = "flex flex-row justify-start items-center" >
21- < Icon
21+ { /* <Icon
2222 classNameIcon="md:hidden"
2323 icon="IconMenu"
2424 color="blue"
2525 onClick={() => setIsNavModalOpen(true)}
26- />
26+ /> */ }
2727 < Image src = { pokeshopLogo } className = "w-[195px]" alt = "Pokemon Pet Shop Logo" />
2828 </ Box >
2929
@@ -43,9 +43,9 @@ export const HeaderContent = () => {
4343 ) : null }
4444
4545 < Box className = "flex flex-row items-center gap-sm" >
46- < HideInMobile >
46+ { /* <HideInMobile>
4747 <SwitchTheme className="invisible md:visible" />
48- </ HideInMobile >
48+ </HideInMobile> */ }
4949 < SideNavModal />
5050 </ Box >
5151 </ Container >
You can’t perform that action at this time.
0 commit comments