No need to disable exposures
This commit is contained in:
@@ -86,11 +86,7 @@ export function AppIconSettingsScreen({}: Props) {
|
|||||||
))}
|
))}
|
||||||
</Group>
|
</Group>
|
||||||
|
|
||||||
{IS_INTERNAL &&
|
{IS_INTERNAL && gate('debug_subscriptions') && (
|
||||||
gate('debug_subscriptions', {
|
|
||||||
// Employee only
|
|
||||||
dangerouslyDisableExposureLogging: true,
|
|
||||||
}) && (
|
|
||||||
<>
|
<>
|
||||||
<Text
|
<Text
|
||||||
style={[
|
style={[
|
||||||
|
|||||||
@@ -177,12 +177,7 @@ export function AppearanceSettingsScreen({}: Props) {
|
|||||||
onChange={onChangeFontScale}
|
onChange={onChangeFontScale}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{isNative &&
|
{isNative && IS_INTERNAL && gate('debug_subscriptions') && (
|
||||||
IS_INTERNAL &&
|
|
||||||
gate('debug_subscriptions', {
|
|
||||||
// Employee only
|
|
||||||
dangerouslyDisableExposureLogging: true,
|
|
||||||
}) && (
|
|
||||||
<>
|
<>
|
||||||
<SettingsList.Divider />
|
<SettingsList.Divider />
|
||||||
<AppIconSettingsListItem />
|
<AppIconSettingsListItem />
|
||||||
|
|||||||
@@ -87,12 +87,7 @@ let PostCtrls = ({
|
|||||||
const {captureAction} = useProgressGuideControls()
|
const {captureAction} = useProgressGuideControls()
|
||||||
const playHaptic = useHaptics()
|
const playHaptic = useHaptics()
|
||||||
const gate = useGate()
|
const gate = useGate()
|
||||||
const isDiscoverDebugUser =
|
const isDiscoverDebugUser = IS_INTERNAL || gate('debug_show_feedcontext')
|
||||||
IS_INTERNAL ||
|
|
||||||
gate('debug_show_feedcontext', {
|
|
||||||
// Employee only
|
|
||||||
dangerouslyDisableExposureLogging: true,
|
|
||||||
})
|
|
||||||
const isBlocked = Boolean(
|
const isBlocked = Boolean(
|
||||||
post.author.viewer?.blocking ||
|
post.author.viewer?.blocking ||
|
||||||
post.author.viewer?.blockedBy ||
|
post.author.viewer?.blockedBy ||
|
||||||
|
|||||||
Reference in New Issue
Block a user