mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix: redirect to history page after register to avoid problems
With the previous redirect to the root page, there were some problems when having no other routes in the route history. Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
f47f6c3658
commit
cd68794157
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ export const LocalRegisterForm: NextPage = () => {
|
|||
doLocalRegister(username, displayName, password)
|
||||
.then(() => fetchAndSetUser())
|
||||
.then(() => dispatchUiNotification('login.register.success.title', 'login.register.success.message', {}))
|
||||
.then(() => router.push('/'))
|
||||
.then(() => router.push('/history'))
|
||||
.catch((error: ApiError) => setError(error))
|
||||
event.preventDefault()
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue