Rename: PasswordResetPage --> PasswordSetPage
There will be an actual "Reset" page coming up next.
This commit is contained in:
parent
19a94d3039
commit
47f600e797
3 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
exports.AUTH = 'signup';
|
||||
exports.AUTH_SIGNIN = 'signin';
|
||||
exports.AUTH_VERIFY = 'verify';
|
||||
exports.AUTH_PASSWORD_SET = 'reset';
|
||||
exports.AUTH_PASSWORD_SET = 'set';
|
||||
exports.BACKUP = 'backup';
|
||||
exports.CHANNEL = 'channel';
|
||||
exports.DISCOVER = 'discover';
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
import PasswordResetPage from './view';
|
||||
import PasswordSetPage from './view';
|
||||
|
||||
export default PasswordResetPage;
|
||||
export default PasswordSetPage;
|
||||
|
|
|
@ -3,7 +3,7 @@ import React from 'react';
|
|||
import UserPasswordSet from 'component/userPasswordSet';
|
||||
import Page from 'component/page';
|
||||
|
||||
export default function PasswordResetPage() {
|
||||
export default function PasswordSetPage() {
|
||||
return (
|
||||
<Page authPage className="main--auth-page">
|
||||
<UserPasswordSet />
|
||||
|
|
Loading…
Reference in a new issue