Rename: PasswordResetPage --> PasswordSetPage

There will be an actual "Reset" page coming up next.
This commit is contained in:
infiinte-persistence 2020-07-07 15:47:48 +08:00 committed by Sean Yesmunt
parent 19a94d3039
commit 47f600e797
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
exports.AUTH = 'signup'; exports.AUTH = 'signup';
exports.AUTH_SIGNIN = 'signin'; exports.AUTH_SIGNIN = 'signin';
exports.AUTH_VERIFY = 'verify'; exports.AUTH_VERIFY = 'verify';
exports.AUTH_PASSWORD_SET = 'reset'; exports.AUTH_PASSWORD_SET = 'set';
exports.BACKUP = 'backup'; exports.BACKUP = 'backup';
exports.CHANNEL = 'channel'; exports.CHANNEL = 'channel';
exports.DISCOVER = 'discover'; exports.DISCOVER = 'discover';

View file

@ -1,3 +1,3 @@
import PasswordResetPage from './view'; import PasswordSetPage from './view';
export default PasswordResetPage; export default PasswordSetPage;

View file

@ -3,7 +3,7 @@ import React from 'react';
import UserPasswordSet from 'component/userPasswordSet'; import UserPasswordSet from 'component/userPasswordSet';
import Page from 'component/page'; import Page from 'component/page';
export default function PasswordResetPage() { export default function PasswordSetPage() {
return ( return (
<Page authPage className="main--auth-page"> <Page authPage className="main--auth-page">
<UserPasswordSet /> <UserPasswordSet />