weareinreach / InReach

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
3 hours agoa year old
Documentation comment not found for arrow function ConditionalReactQueryDevtool
 8	{ ssr: false }
 9)
10
11export const ConditionalReactQueryDevtool = () => {12	const { data: session, status: authStatus } = useSession()
13	const isLoggedIn = !!session && authStatus === 'authenticated'
14	// don't do anything on server or if we're in prod
Documentation comment not found for arrow function MyApp
 58	)
 59}
 60
 61const MyApp = (appProps: AppPropsWithGridSwitch) => { 62	const {
 63		pageProps: { session },
 64	} = appProps
Documentation comment not found for arrow function PageContent
 46	appEvent.webVitals(stats)
 47}
 48
 49const PageContent = ({ Component, pageProps }: AppPropsWithGridSwitch) => { 50	const router = useRouter()
 51	const autoResetState = Component.autoResetState ? { key: router.asPath } : {}
 52	return Component.omitGrid ? (
Documentation comment not found for function declaration reportWebVitals
 42	],
 43} satisfies DefaultSeoProps
 44
 45export function reportWebVitals(stats: NextWebVitalsMetric) { 46	appEvent.webVitals(stats)
 47}
 48
Documentation comment not found for arrow function areWeStillLoading
 66		}
 67	}
 68
 69	const areWeStillLoading = () => { 70		if (loading || status === 'loading') {
 71			return true
 72		}