From dd94a14cf1af800c0273da296d5b2a8d1e3fe01c Mon Sep 17 00:00:00 2001 From: danielvici123 Date: Sat, 6 Dec 2025 21:37:22 +0100 Subject: [PATCH] Refactor: Update generator routing paths to plural --- src/app/app.routes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 51aadb2..d9fb085 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -31,11 +31,11 @@ export const routes: Routes = [ }, // GENERATORS { - path: 'generator/password', + path: 'generators/password', component: GeneratorPassword, }, { - path: 'generator/qrcode', + path: 'generators/qrcode', component: GeneratorQrcode, }, {