···11import React from 'react'
22-import {AppBskyActorDefs} from '@atproto/api'
22+import {type AppBskyActorDefs} from '@atproto/api'
33import {msg, Trans} from '@lingui/macro'
44import {useLingui} from '@lingui/react'
55import {useNavigation} from '@react-navigation/native'
···126126 <ButtonText>
127127 {!isFollowing ? (
128128 isFollowedBy ? (
129129- <Trans>Follow Back</Trans>
129129+ <Trans>Follow back</Trans>
130130 ) : (
131131 <Trans>Follow</Trans>
132132 )
+5-5
src/view/com/profile/FollowButton.tsx
···11-import {StyleProp, TextStyle, View} from 'react-native'
11+import {type StyleProp, type TextStyle, View} from 'react-native'
22import {msg} from '@lingui/macro'
33import {useLingui} from '@lingui/react'
4455-import {Shadow} from '#/state/cache/types'
55+import {type Shadow} from '#/state/cache/types'
66import {useProfileFollowMutationQueue} from '#/state/queries/profile'
77-import * as bsky from '#/types/bsky'
88-import {Button, ButtonType} from '../util/forms/Button'
77+import type * as bsky from '#/types/bsky'
88+import {Button, type ButtonType} from '../util/forms/Button'
99import * as Toast from '../util/Toast'
10101111export function FollowButton({
···7878 type={unfollowedType}
7979 labelStyle={labelStyle}
8080 onPress={onPressFollow}
8181- label={_(msg({message: 'Follow Back', context: 'action'}))}
8181+ label={_(msg({message: 'Follow back', context: 'action'}))}
8282 />
8383 )
8484 }