refactor: migrate authentication and signup flow to use external API and improve type safety
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
import { ApplicationLayout } from "@/components/auth/application-layout";
|
||||
import QueryProvider from "@/components/query-provider";
|
||||
|
||||
export default function DashboardLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return <ApplicationLayout>{children}</ApplicationLayout>;
|
||||
return <ApplicationLayout>
|
||||
<QueryProvider>
|
||||
{children}
|
||||
</QueryProvider>
|
||||
</ApplicationLayout>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user