mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-28 07:51:31 +00:00
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 = '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';
|
||||||
|
|
|
@ -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 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 />
|
||||||
|
|
Loading…
Add table
Reference in a new issue