Default Note Type
New notes will be created using this type.
diff --git a/packages/web/src/javascripts/Components/Preferences/Panes/Security/Security.tsx b/packages/web/src/javascripts/Components/Preferences/Panes/Security/Security.tsx
index 4ab7389aa..779c1e065 100644
--- a/packages/web/src/javascripts/Components/Preferences/Panes/Security/Security.tsx
+++ b/packages/web/src/javascripts/Components/Preferences/Panes/Security/Security.tsx
@@ -17,9 +17,6 @@ interface SecurityProps extends MfaProps {
application: WebApplication
}
-const SHOW_MULTITASKING_PRIVACY = false
-const SHOW_BIOMETRICS_LOCK = false
-
const Security: FunctionComponent
= (props) => {
const isNativeMobileWeb = props.application.isNativeMobileWeb()
@@ -31,9 +28,9 @@ const Security: FunctionComponent = (props) => {
)}
- {SHOW_MULTITASKING_PRIVACY && isNativeMobileWeb && }
+ {isNativeMobileWeb && }
- {SHOW_BIOMETRICS_LOCK && isNativeMobileWeb && }
+ {isNativeMobileWeb && }
{props.application.getUser() && }
)