Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 42fa1ba

Browse files
author
Fuss Florian (uid10804)
committed
style(gts): fix small style error found by gts
1 parent 6aa3a3d commit 42fa1ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/server/src/app/core.app.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ export class CoreApp {
8383
router,
8484
appConfig: AppConfig
8585
): Promise<void> {
86-
middlewares.splice(middlewares.findIndex(x => x.name === 'serveStatic'), 1);
86+
middlewares.splice(
87+
middlewares.findIndex(x => x.name === 'serveStatic'),
88+
1
89+
);
8790
this.server.use(middlewares);
8891
this.server.use('/api', router);
8992
if (!this.swaggerSpec && appConfig.enableSwagger) {

0 commit comments

Comments
 (0)