diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-09-28 12:41:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 12:41:44 -0700 |
commit | 2e5f73ff6149f9ac2834b0417c84b76763ef5ee2 (patch) | |
tree | 2a30023dc0f6c81c33704235655f65e0f204629f /src/view/com/modals/Modal.tsx | |
parent | 3e340b336ef92feb25da042430b6b3719c772b77 (diff) | |
download | voidsky-2e5f73ff6149f9ac2834b0417c84b76763ef5ee2.tar.zst |
Account quick switch modal (#1567)
* quick switch menu * Some small tweaks and fixes to the account switch modal * Factor out the account switcher logic to a hook * Add haptic feedback on account switcher open * Fix bad merge --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/view/com/modals/Modal.tsx')
-rw-r--r-- | src/view/com/modals/Modal.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index 8590a2698..cd2d2d9e9 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -32,6 +32,7 @@ import * as ModerationDetailsModal from './ModerationDetails' import * as BirthDateSettingsModal from './BirthDateSettings' import * as VerifyEmailModal from './VerifyEmail' import * as ChangeEmailModal from './ChangeEmail' +import * as SwitchAccountModal from './SwitchAccount' const DEFAULT_SNAPPOINTS = ['90%'] @@ -144,6 +145,9 @@ export const ModalsContainer = observer(function ModalsContainer() { } else if (activeModal?.name === 'change-email') { snapPoints = ChangeEmailModal.snapPoints element = <ChangeEmailModal.Component /> + } else if (activeModal?.name === 'switch-account') { + snapPoints = SwitchAccountModal.snapPoints + element = <SwitchAccountModal.Component /> } else { return null } |