From f80c522bb8b16eb97201380f68c748c44e8754c9 Mon Sep 17 00:00:00 2001 From: PrimarchPaul Date: Sat, 27 Sep 2025 04:18:44 -0400 Subject: [PATCH] fixed: app.route overload --- concord-server/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concord-server/src/index.ts b/concord-server/src/index.ts index d47ea7e..16f7ec9 100644 --- a/concord-server/src/index.ts +++ b/concord-server/src/index.ts @@ -42,7 +42,7 @@ app.use('*', cors({ allowHeaders: ['Content-Type', 'Authorization'], allowMethods: ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'], credentials: true -}) +})) app.route('/api', routes)