diff --git a/apps/next/app/ssr/screen.tsx b/apps/next/app/ssr/screen.tsx
index 14800c462..6f69d17ab 100644
--- a/apps/next/app/ssr/screen.tsx
+++ b/apps/next/app/ssr/screen.tsx
@@ -5,9 +5,7 @@ import { Paragraph, YStack } from '@t4/ui'
export function SSRTestScreen(props: { content: string }) {
return (
-
- {props.content}
-
+ {props.content}
)
}
diff --git a/packages/app/provider/index.tsx b/packages/app/provider/index.tsx
index 2ad501761..d683b935c 100644
--- a/packages/app/provider/index.tsx
+++ b/packages/app/provider/index.tsx
@@ -9,6 +9,7 @@ import { ToastViewport } from './toast-viewport'
import { TRPCProvider } from './trpc'
import { Session } from 'app/utils/auth'
import { LuciaAuthProvider as AuthProvider } from './auth'
+import { Provider as JotaiProvider } from 'jotai'
export function Provider({
children,
@@ -18,22 +19,24 @@ export function Provider({
initialSession: Session | null
}) {
return (
-
-
-
-
-
-
-
- {children}
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+
+
+
+
+
)
}