From 4a6d40481bab1cfd060e73deaa63817323759cc7 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 12 Feb 2025 11:34:14 +0100 Subject: [PATCH] style(app.routes): fix formatting of routes array syntax --- frontend/src/app/app.routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 2d53d28..02b958c 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -12,5 +12,5 @@ export const routes: Routes = [ path: 'home', component: HomepageComponent, canActivate: [authGuard], - } + }, ];