diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-09-28 12:08:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 12:08:00 -0700 |
commit | cd3b0e54fbefa6c38ae6ad81198c8d766baee2c5 (patch) | |
tree | 11676f9031d2c5f27e298feec178ce7c2df62262 /src/view/com/modals/Modal.web.tsx | |
parent | 16763d1d4118292432678ef256226139c0be73c1 (diff) | |
download | voidsky-cd3b0e54fbefa6c38ae6ad81198c8d766baee2c5.tar.zst |
Email verification and change flows (#1560)
* fix 'Reposted by' text overflow * Add email verification flow * Implement change email flow * Add verify email reminder on load * Bump @atproto/api@0.6.20 * Trim the inputs * Accessibility fixes * Fix typo * Fix: include the day in the sharding check * Update auto behaviors * Update yarn.lock * Temporary error message --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/view/com/modals/Modal.web.tsx')
-rw-r--r-- | src/view/com/modals/Modal.web.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index 3e87e0e3c..7548fb806 100644 --- a/src/view/com/modals/Modal.web.tsx +++ b/src/view/com/modals/Modal.web.tsx @@ -28,6 +28,8 @@ import * as ContentLanguagesSettingsModal from './lang-settings/ContentLanguages import * as PostLanguagesSettingsModal from './lang-settings/PostLanguagesSettings' import * as ModerationDetailsModal from './ModerationDetails' import * as BirthDateSettingsModal from './BirthDateSettings' +import * as VerifyEmailModal from './VerifyEmail' +import * as ChangeEmailModal from './ChangeEmail' export const ModalsContainer = observer(function ModalsContainer() { const store = useStores() @@ -110,6 +112,10 @@ function Modal({modal}: {modal: ModalIface}) { element = <ModerationDetailsModal.Component {...modal} /> } else if (modal.name === 'birth-date-settings') { element = <BirthDateSettingsModal.Component /> + } else if (modal.name === 'verify-email') { + element = <VerifyEmailModal.Component {...modal} /> + } else if (modal.name === 'change-email') { + element = <ChangeEmailModal.Component /> } else { return null } |