diff --git a/src/app/(auth-routes)/layout.tsx b/src/app/(auth-routes)/layout.tsx index 3b8ef1bb4..e52d156bf 100644 --- a/src/app/(auth-routes)/layout.tsx +++ b/src/app/(auth-routes)/layout.tsx @@ -1,7 +1,6 @@ -import Footer from "~/components/layouts/footer"; - import { Suspense } from "react"; +import Footer from "~/components/layouts/footer"; import Navbar from "~/components/layouts/navbar"; function Layout({ children }: { children: React.ReactNode }) { diff --git a/src/app/(auth-routes)/register/page.tsx b/src/app/(auth-routes)/register/page.tsx index 5d50ba109..9d5e37f1a 100644 --- a/src/app/(auth-routes)/register/page.tsx +++ b/src/app/(auth-routes)/register/page.tsx @@ -23,8 +23,8 @@ import { InputOTPGroup, InputOTPSlot, } from "~/components/ui/input-otp"; -import Google from "../../../../public/images/google.svg"; import Facebook from "../../../../public/images/facebook.svg"; +import Google from "../../../../public/images/google.svg"; const formSchema = z.object({ fullname: z.string().min(2, {