From a2b93e9624a30b6164e401b43b6dc3fea0a34112 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 1 Sep 2026 10:39:44 +0200 Subject: [PATCH] fix: set dummy secret for testing for backend --- backend/src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app.ts b/backend/src/app.ts index 5fd7820..8d4fd61 100644 --- a/backend/src/app.ts +++ b/backend/src/app.ts @@ -9,7 +9,7 @@ const run = () => { const app = express(); app.use( expressSession( { - 'secret': '', + 'secret': 'dev', 'resave': true, 'saveUninitialized': false } ) );