Skip to content

Commit fc100c8

Browse files
committed
Typo
1 parent 82e07b1 commit fc100c8

File tree

1 file changed

+2
-2
lines changed
  • src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src

1 file changed

+2
-2
lines changed

src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/router.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ const router = createRouter({
298298
],
299299
});
300300

301-
// Gaurd for authenticated routes
301+
// Guard for authenticated routes
302302
router.beforeEach(async (to, _) => {
303303
const oidcStore = useOidcStore();
304304
const userStore = useUserStore();
@@ -391,7 +391,7 @@ router.beforeEach((to, _, next) => {
391391
} else next();
392392
});
393393

394-
// Gaurd to prevent users from accessing /application if they have already submitted an application
394+
// Guard to prevent users from accessing /application if they have already submitted an application
395395
router.beforeEach((to, _, next) => {
396396
const applicationStore = useApplicationStore();
397397
if (to.path === "/application" && applicationStore.hasSubmittedApplication) {

0 commit comments

Comments
 (0)