Update Versi 1.5.27 #32

Merged
bagasbanuna merged 1009 commits from staging into main 2025-12-17 12:22:28 +08:00
176 changed files with 5099 additions and 809 deletions
Showing only changes of commit 74448e1dd2 - Show all commits

View File

@@ -2,11 +2,14 @@
import { SplashScreen } from "@/app_modules/auth";
import { useShallowEffect } from "@mantine/hooks";
import { useRouter } from "next/navigation";
export default function Page() {
const router = useRouter()
useShallowEffect(() => {
setTimeout(() => {
window.location.replace("/dev/home");
// window.location.replace("/dev/home");
router.replace("/dev/home");
}, 1000);
}, []);