🐛 Fix registration redirect link

This commit is contained in:
Meier Lukas
2023-08-01 11:53:30 +02:00
parent 80a4369845
commit 2c5ef6a73b

View File

@@ -30,7 +30,7 @@ export default function AuthInvitePage() {
const notificationId = 'register'; const notificationId = 'register';
showNotification({ showNotification({
id: notificationId, id: notificationId,
title: 'Registering...', title: 'Creating account',
message: 'Please wait...', message: 'Please wait...',
loading: true, loading: true,
}); });
@@ -48,7 +48,7 @@ export default function AuthInvitePage() {
color: 'teal', color: 'teal',
icon: <IconCheck />, icon: <IconCheck />,
}); });
router.push('/login'); router.push('/auth/login');
}, },
onError() { onError() {
updateNotification({ updateNotification({