'use client'; import { Loading } from 'react-basics'; import Script from 'next/script'; import { usePathname } from 'next/navigation'; import { useLogin, useConfig } from 'components/hooks'; import UpdateNotice from './UpdateNotice'; export function App({ children }) { const { user, isLoading, error } = useLogin(); const config = useConfig(); const pathname = usePathname(); if (isLoading) { return ; } if (error) { window.location.href = `${process.env.basePath || ''}/login`; } if (!user || !config) { return null; } return ( <> {children} {process.env.NODE_ENV === 'production' && !pathname.includes('/share/') && (