diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/modals/DeleteAccount.tsx | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/view/com/modals/DeleteAccount.tsx b/src/view/com/modals/DeleteAccount.tsx index b865d7bbf..5e188ee06 100644 --- a/src/view/com/modals/DeleteAccount.tsx +++ b/src/view/com/modals/DeleteAccount.tsx @@ -19,11 +19,8 @@ import {isAndroid, isWeb} from '#/platform/detection' import {useModalControls} from '#/state/modals' import {DM_SERVICE_HEADERS} from '#/state/queries/messages/const' import {useAgent, useSession, useSessionApi} from '#/state/session' -import {DeactivateAccountDialog} from '#/screens/Settings/components/DeactivateAccountDialog' import {atoms as a, useTheme as useNewTheme} from '#/alf' -import {useDialogControl} from '#/components/Dialog' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' -import {InlineLinkText} from '#/components/Link' import {Text as NewText} from '#/components/Typography' import {resetToTab} from '../../../Navigation' import {ErrorMessage} from '../util/error/ErrorMessage' @@ -48,7 +45,6 @@ export function Component({}: {}) { const [password, setPassword] = React.useState<string>('') const [isProcessing, setIsProcessing] = React.useState<boolean>(false) const [error, setError] = React.useState<string>('') - const deactivateAccountControl = useDialogControl() const onPressSendEmail = async () => { setError('') setIsProcessing(true) @@ -202,25 +198,10 @@ export function Component({}: {}) { <Trans> You can also temporarily deactivate your account instead, and reactivate it at any time. - </Trans>{' '} - <InlineLinkText - label={_( - msg`Click here for more information on deactivating your account`, - )} - to="#" - onPress={e => { - e.preventDefault() - closeModal() - deactivateAccountControl.open() - return false - }}> - <Trans>Click here for more information.</Trans> - </InlineLinkText> + </Trans> </NewText> </View> </View> - - <DeactivateAccountDialog control={deactivateAccountControl} /> </> ) : ( <> |