Skip to content

Commit 6e83f81

Browse files
committed
Merge branch 'feature/ui-standardization' into staging
2 parents b336919 + 3825ee3 commit 6e83f81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+7493
-3644
lines changed

src/client/app/chat/page.js

Lines changed: 569 additions & 1207 deletions
Large diffs are not rendered by default.

src/client/app/integrations/page.js

Lines changed: 260 additions & 257 deletions
Large diffs are not rendered by default.

src/client/app/layout.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { Auth0Provider } from "@auth0/nextjs-auth0"
33
import "@styles/globals.css" // Import global styles for the application
44
import { Toaster } from "react-hot-toast"
55
import React, { Suspense } from "react"
6-
import LayoutWrapper from "@components/LayoutWrapper"
6+
import ReactQueryProvider from "@lib/ReactQueryProvider"
7+
import LayoutWrapper from "@components/layout/LayoutWrapper"
78
import { PostHogProvider } from "@components/PostHogProvider"
89

910
/**
@@ -66,14 +67,14 @@ export default function RootLayout({ children }) {
6667
</head>
6768
<body className="font-sans" suppressHydrationWarning>
6869
<Auth0Provider>
69-
<PostHogProvider>
70+
<ReactQueryProvider>
7071
<Toaster position="bottom-right" />
7172
<div className="flex h-screen w-full text-white overflow-hidden">
7273
<Suspense>
7374
<LayoutWrapper>{children}</LayoutWrapper>
7475
</Suspense>
7576
</div>
76-
</PostHogProvider>
77+
</ReactQueryProvider>
7778
</Auth0Provider>
7879
</body>
7980
</html>

0 commit comments

Comments
 (0)