···4141import {ProfileLabelsSection} from '#/screens/Profile/Sections/Labels'
4242import {ScreenHider} from '#/components/moderation/ScreenHider'
4343import {ProfileStarterPacks} from '#/components/StarterPack/ProfileStarterPacks'
4444+import {navigate} from '#/Navigation'
4445import {ExpoScrollForwarderView} from '../../../modules/expo-scroll-forwarder'
4546import {ProfileFeedgens} from '../com/feeds/ProfileFeedgens'
4647import {ProfileLists} from '../com/lists/ProfileLists'
···8586 refetchProfile()
8687 }
8788 }, [resolveError, refetchDid, refetchProfile])
8989+9090+ // Apply hard-coded redirects as need
9191+ React.useEffect(() => {
9292+ if (resolveError) {
9393+ if (name === 'lulaoficial.bsky.social') {
9494+ console.log('Applying redirect to lula.com.br')
9595+ navigate('Profile', {name: 'lula.com.br'})
9696+ }
9797+ }
9898+ }, [name, resolveError])
889989100 // When we open the profile, we want to reset the posts query if we are blocked.
90101 React.useEffect(() => {