lint and format

This commit is contained in:
2024-08-11 15:28:53 +02:00
parent da0cccfb0e
commit 57c5998435
36 changed files with 407 additions and 397 deletions

View File

@@ -1,11 +1,11 @@
import "../styles/globals.css";
import "../styles/globals.css"
import { QueryClientProvider, QueryClient } from "@tanstack/react-query";
import { type AppType } from "next/dist/shared/lib/utils";
import { QueryClientProvider, QueryClient } from "@tanstack/react-query"
import type { AppType } from "next/dist/shared/lib/utils"
import { AuthRedirect } from "@/components";
import { AuthRedirect } from "@/components"
const queryClient = new QueryClient();
const queryClient = new QueryClient()
const MyApp: AppType = ({ Component, pageProps }) => {
return (
@@ -14,7 +14,7 @@ const MyApp: AppType = ({ Component, pageProps }) => {
<Component {...pageProps} />
</AuthRedirect>
</QueryClientProvider>
);
};
)
}
export default MyApp;
export default MyApp