diff --git a/screen/settings/SettingsPrivacy.tsx b/screen/settings/SettingsPrivacy.tsx
index e07cc03e8..156f53118 100644
--- a/screen/settings/SettingsPrivacy.tsx
+++ b/screen/settings/SettingsPrivacy.tsx
@@ -92,7 +92,7 @@ const SettingsPrivacy: React.FC = () => {
const onTemporaryScreenshotsValueChange = (value: boolean) => {
setIsLoading(SettingsPrivacySection.TemporaryScreenshots);
- setIsPrivacyBlurEnabledState(value);
+ setIsPrivacyBlurEnabledState(!value);
setIsLoading(SettingsPrivacySection.None);
};
@@ -145,17 +145,13 @@ const SettingsPrivacy: React.FC = () => {
Component={TouchableWithoutFeedback}
switch={{
onValueChange: onTemporaryScreenshotsValueChange,
- value: isPrivacyBlurEnabled,
+ value: !isPrivacyBlurEnabled,
disabled: isLoading === SettingsPrivacySection.All,
}}
/>
{loc.settings.privacy_temporary_screenshots_instructions}
-
-
-
-
{
>
)}
+
+
+
);