fix the route for NotFound

This commit is contained in:
Andreas Zweili 2021-07-28 21:18:27 +02:00
parent 8fd11809ed
commit 701c596ad1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ const router = createRouter({
},
{ path: '/register', component: CoachRegistration },
{ path: '/requests', component: RequestsRecieved },
{ path: '/notFound(.*)', component: NotFound }
{ path: '/:notFound(.*)', component: NotFound }
]
});