diff --git a/src/screens/Settings/AppIconSettings/index.tsx b/src/screens/Settings/AppIconSettings/index.tsx
index 97efb50ce9..0be2894d52 100644
--- a/src/screens/Settings/AppIconSettings/index.tsx
+++ b/src/screens/Settings/AppIconSettings/index.tsx
@@ -86,38 +86,34 @@ export function AppIconSettingsScreen({}: Props) {
))}
- {IS_INTERNAL &&
- gate('debug_subscriptions', {
- // Employee only
- dangerouslyDisableExposureLogging: true,
- }) && (
- <>
-
- Bluesky+
-
-
- {sets.core.map((icon, i) => (
-
-
- {icon.name}
-
- ))}
-
- >
- )}
+ {IS_INTERNAL && gate('debug_subscriptions') && (
+ <>
+
+ Bluesky+
+
+
+ {sets.core.map((icon, i) => (
+
+
+ {icon.name}
+
+ ))}
+
+ >
+ )}
)
diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx
index a23b792c71..4a8a61cd23 100644
--- a/src/screens/Settings/AppearanceSettings.tsx
+++ b/src/screens/Settings/AppearanceSettings.tsx
@@ -177,17 +177,12 @@ export function AppearanceSettingsScreen({}: Props) {
onChange={onChangeFontScale}
/>
- {isNative &&
- IS_INTERNAL &&
- gate('debug_subscriptions', {
- // Employee only
- dangerouslyDisableExposureLogging: true,
- }) && (
- <>
-
-
- >
- )}
+ {isNative && IS_INTERNAL && gate('debug_subscriptions') && (
+ <>
+
+
+ >
+ )}
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx
index 31437d4cdd..607a480ff2 100644
--- a/src/view/com/util/post-ctrls/PostCtrls.tsx
+++ b/src/view/com/util/post-ctrls/PostCtrls.tsx
@@ -87,12 +87,7 @@ let PostCtrls = ({
const {captureAction} = useProgressGuideControls()
const playHaptic = useHaptics()
const gate = useGate()
- const isDiscoverDebugUser =
- IS_INTERNAL ||
- gate('debug_show_feedcontext', {
- // Employee only
- dangerouslyDisableExposureLogging: true,
- })
+ const isDiscoverDebugUser = IS_INTERNAL || gate('debug_show_feedcontext')
const isBlocked = Boolean(
post.author.viewer?.blocking ||
post.author.viewer?.blockedBy ||