diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx
index 078ebedabb..f5ecc86c50 100644
--- a/src/view/screens/Settings/index.tsx
+++ b/src/view/screens/Settings/index.tsx
@@ -63,6 +63,7 @@ import {ScrollView} from 'view/com/util/Views'
import {useTheme} from '#/alf'
import {useDialogControl} from '#/components/Dialog'
import {BirthDateSettingsDialog} from '#/components/dialogs/BirthDateSettings'
+import * as Prompt from '#/components/Prompt'
import {navigate, resetToTab} from '#/Navigation'
import {Email2FAToggle} from './Email2FAToggle'
import {ExportCarDialog} from './ExportCarDialog'
@@ -306,6 +307,11 @@ export function SettingsScreen({}: Props) {
Toast.show(_(msg`Legacy storage cleared, you need to restart the app now.`))
}, [_])
+ const deactivateAccountControl = Prompt.usePromptControl()
+ const onPressDeactivateAccount = React.useCallback(() => {
+ deactivateAccountControl.open()
+ }, [deactivateAccountControl])
+
const {mutate: onPressDeleteChatDeclaration} = useDeleteActorDeclaration()
return (
@@ -790,6 +796,38 @@ export function SettingsScreen({}: Props) {
Export My Data
+
+
+
+
+
+
+ Deactivate my account
+
+
+ {}}
+ />
+