diff --git a/app/scenes/Settings/Security.tsx b/app/scenes/Settings/Security.tsx
index b17e2f385..82e21d82d 100644
--- a/app/scenes/Settings/Security.tsx
+++ b/app/scenes/Settings/Security.tsx
@@ -14,6 +14,7 @@ import env from "~/env";
import useCurrentTeam from "~/hooks/useCurrentTeam";
import useStores from "~/hooks/useStores";
import useToasts from "~/hooks/useToasts";
+import isHosted from "~/utils/isHosted";
import SettingRow from "./components/SettingRow";
function Security() {
@@ -170,28 +171,29 @@ function Security() {
onChange={handleChange}
/>
-
- ,
- }}
+ {isHosted && (
+ ,
+ }}
+ />
+ }
+ >
+
- }
- >
-
-
+
+ )}