From 370e2d7ade9a4dddce22b6e29520a65e5bb0d969 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Mon, 18 Aug 2025 00:27:07 -0400 Subject: [PATCH] chore: remove app parameter from AppService invocation --- api/server/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/server/index.js b/api/server/index.js index d81a667b6c..1c9f571468 100644 --- a/api/server/index.js +++ b/api/server/index.js @@ -46,7 +46,7 @@ const startServer = async () => { app.disable('x-powered-by'); app.set('trust proxy', trusted_proxy); - await AppService(app); + await AppService(); const appConfig = await getAppConfig(); const indexPath = path.join(appConfig.paths.dist, 'index.html'); const indexHTML = fs.readFileSync(indexPath, 'utf8');