add new components

This commit is contained in:
2026-02-19 05:57:31 +01:00
parent 316055652f
commit 2933465ba9
32 changed files with 3543 additions and 6916 deletions

View File

@@ -4,6 +4,6 @@ import { authMiddleware } from "@/middleware/auth";
export const getUser = createServerFn({ method: "GET" })
.middleware([authMiddleware])
.handler(async ({ context }) => {
.handler(({ context }) => {
return context.session;
});