This commit is contained in:
Chris Kruining 2025-03-05 16:38:01 +01:00
parent ee8006f834
commit 0786d53474
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -18,8 +18,6 @@ export interface State {
const getSession = async () => { const getSession = async () => {
'use server'; 'use server';
console.log(process.env.SESSION_SECRET);
return useSession<State>({ return useSession<State>({
password: process.env.SESSION_SECRET!, password: process.env.SESSION_SECRET!,
}); });