feat: show miis on profiles

and other changes
This commit is contained in:
trafficlunar 2026-04-17 19:50:47 +01:00
parent 9795849830
commit 896dc40553
17 changed files with 271 additions and 408 deletions

View file

@ -5,6 +5,7 @@ import { Navigate } from "react-router";
export default function SubmitPage() {
const $session = useStore(session);
if (!$session) return <Navigate to="/login" replace />;
if ($session === undefined) return <div className="p-6 text-center">Loading...</div>;
if ($session === null) return <Navigate to="/login" replace />;
return <SubmitForm />;
}