Bug: Redirect user to set new password screen (#772)
This commit is contained in:
parent
6770126de0
commit
fde4f9271b
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ export default {
|
||||||
Auth.verifyPasswordToken({
|
Auth.verifyPasswordToken({
|
||||||
confirmationToken: this.confirmationToken
|
confirmationToken: this.confirmationToken
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location = '/';
|
window.location = res.data.redirect_url;
|
||||||
}).catch(res => {
|
}).catch(res => {
|
||||||
window.location = '/';
|
window.location = '/';
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue