File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import workosWidgetsCssUrl from '@workos-inc/widgets/styles.css?url';
33import { HeadContent , Outlet , Scripts , createRootRoute } from '@tanstack/react-router' ;
44import { TanStackRouterDevtools } from '@tanstack/react-router-devtools' ;
55import { getAuth , getOrganisationDetails , getSignInUrl } from '@/authkit/serverFunctions' ;
6- import type { ReactNode } from 'react' ;
6+ import { useEffect , type ReactNode } from 'react' ;
77import globalCssUrl from '@/styles/global.css?url' ;
88import { Toaster } from '@/components/ui/toaster' ;
99import { getPublicServerConfig } from '@/lib/env.server' ;
@@ -60,6 +60,11 @@ export const Route = createRootRoute({
6060
6161function DashboardRootComponent ( ) {
6262 const data = ( Route as any ) . useLoaderData ?.( ) || { } ;
63+
64+ useEffect ( ( ) => {
65+ console . log ( '🚀 Test deployment log: UI application loaded successfully!' ) ;
66+ } , [ ] ) ;
67+
6368 return (
6469 < DashboardRootDocument publicServerConfig = { data . publicServerConfig } >
6570 < Outlet />
You can’t perform that action at this time.
0 commit comments