Merge branch 'bluesky-social:main' into patch-3

This commit is contained in:
Minseo Lee
2024-03-14 21:11:00 +09:00
committed by GitHub
20 changed files with 210 additions and 42 deletions
@@ -57,7 +57,7 @@ export function RecommendedFollowsItem({
)
}
export function ProfileCard({
function ProfileCard({
profile,
onFollowStateChange,
moderation,
@@ -74,7 +74,10 @@ export function ProfileCard({
const {_} = useLingui()
const [addingMoreSuggestions, setAddingMoreSuggestions] =
React.useState(false)
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(profile)
const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue(
profile,
'RecommendedFollowsItem',
)
const onToggleFollow = React.useCallback(async () => {
try {