accounts page, list all sessions

This commit is contained in:
Max Peintner
2023-05-17 15:25:25 +02:00
parent d3562b1f63
commit 202e0b7635
9 changed files with 152 additions and 36 deletions

View File

@@ -46,7 +46,7 @@ export default function PasswordForm() {
function submitPasswordAndContinue(value: Inputs): Promise<boolean | void> {
console.log(value);
return submitPassword(value).then((resp: any) => {
return router.push(`/success`);
return router.push(`/accounts`);
});
}