completed user admin page

This commit is contained in:
PxlLoewe
2025-03-15 11:09:55 -07:00
parent abf3475c7c
commit 37d02ea0bc
23 changed files with 567 additions and 106 deletions

View File

@@ -14,7 +14,6 @@ export default async function RootLayout({
children: React.ReactNode;
}>) {
const session = await getServerSession();
console.log(session);
if (!session) {
redirect("/login");
}

View File

@@ -1,8 +1,6 @@
import { create } from "zustand";
import { socket } from "../(dispatch)/socket";
console.log("connectionStore");
interface ConnectionStore {
isConnected: boolean;
connect: (uid: string) => Promise<void>;