mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Correcting some bugs in statistics.
This commit is contained in:
+20
-8
@@ -1,14 +1,26 @@
|
||||
"use client"
|
||||
import {useRouter} from "next/navigation";
|
||||
import {redirect, useRouter} from "next/navigation";
|
||||
import {useEffect} from "react";
|
||||
import {currentUser} from "@/auth/current-user";
|
||||
|
||||
export default function NotFound() {
|
||||
// export default function NotFound() {
|
||||
//
|
||||
// const router = useRouter();
|
||||
//
|
||||
// useEffect(() => {
|
||||
// router.push('/');
|
||||
// }, [router]);
|
||||
//
|
||||
// return null; // You can return null or a loading spinner while the redirect happens
|
||||
// }
|
||||
|
||||
const router = useRouter();
|
||||
export default async function NotFound() {
|
||||
|
||||
useEffect(() => {
|
||||
router.push('/');
|
||||
}, [router]);
|
||||
// const user = await currentUser()
|
||||
// if (!user) {
|
||||
// redirect("/")
|
||||
// }else{
|
||||
// redirect("/")
|
||||
// }
|
||||
|
||||
return null; // You can return null or a loading spinner while the redirect happens
|
||||
redirect("/")
|
||||
}
|
||||
Reference in New Issue
Block a user