···11import {BSKY_LABELER_DID, BskyAgent} from '@atproto/api'
2233import {IS_TEST_USER} from '#/lib/constants'
44+import {getNoAppLabelers} from '../preferences/no-app-labelers'
45import {configureAdditionalModerationAuthorities} from './additional-moderation-authorities'
56import {readLabelers} from './agent-config'
66-import {SessionAccount} from './types'
77+import {type SessionAccount} from './types'
7889export function configureModerationForGuest() {
910 // This global mutation is *only* OK because this code is only relevant for testing.
···3839}
39404041function switchToBskyAppLabeler() {
4141- BskyAgent.configure({appLabelers: [BSKY_LABELER_DID]})
4242+ BskyAgent.configure({
4343+ appLabelers: getNoAppLabelers() ? [] : [BSKY_LABELER_DID],
4444+ })
4245}
43464447async function trySwitchToTestAppLabeler(agent: BskyAgent) {