diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-26 20:50:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-26 10:50:39 -0700 |
commit | 98d96bd28ba62e7cc6d4be39e4f1f146105cdccc (patch) | |
tree | cfc95b40235f6e227efcaa0de728e495baf4b1b6 /src/view/com/modals/Modal.web.tsx | |
parent | dd2830ba6c5afcab3d9b9194e0eccb3d5bce2267 (diff) | |
download | voidsky-98d96bd28ba62e7cc6d4be39e4f1f146105cdccc.tar.zst |
Modernise change password dialog (#8269)
* alf change password dialog * rm old modal * move dialog * fix buttons on native * lowercase * fix dupe import * Apply suggestions from code review Thanks @surfdude29 :) Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * use primary_subtle, change web layout * move to into non-network err, warn -> error * error -> safeMessage * better message than token is invalid * cancel button native only * move close to end of focus priority --------- Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
Diffstat (limited to 'src/view/com/modals/Modal.web.tsx')
-rw-r--r-- | src/view/com/modals/Modal.web.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index 3eb744380..08f0e2f85 100644 --- a/src/view/com/modals/Modal.web.tsx +++ b/src/view/com/modals/Modal.web.tsx @@ -6,7 +6,6 @@ import {usePalette} from '#/lib/hooks/usePalette' import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {type Modal as ModalIface} from '#/state/modals' import {useModalControls, useModals} from '#/state/modals' -import * as ChangePasswordModal from './ChangePassword' import * as CreateOrEditListModal from './CreateOrEditList' import * as DeleteAccountModal from './DeleteAccount' import * as InviteCodesModal from './InviteCodes' @@ -62,8 +61,6 @@ function Modal({modal}: {modal: ModalIface}) { element = <ContentLanguagesSettingsModal.Component /> } else if (modal.name === 'post-languages-settings') { element = <PostLanguagesSettingsModal.Component /> - } else if (modal.name === 'change-password') { - element = <ChangePasswordModal.Component /> } else { return null } |