Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #1513 from bluesky-social/eric/app-855-update-language-settings-in-app

update translator link show logic

authored by

Eric Bailey and committed by
GitHub
1b3b4c66 146132a0

+5 -3
+5 -3
src/view/com/post-thread/PostThreadItem.tsx
··· 81 81 ) 82 82 const needsTranslation = useMemo( 83 83 () => 84 - store.preferences.contentLanguages.length > 0 && 85 - !isPostInLanguage(item.post, store.preferences.contentLanguages), 86 - [item.post, store.preferences.contentLanguages], 84 + Boolean( 85 + store.preferences.primaryLanguage && 86 + !isPostInLanguage(item.post, [store.preferences.primaryLanguage]), 87 + ), 88 + [item.post, store.preferences.primaryLanguage], 87 89 ) 88 90 89 91 const onPressReply = React.useCallback(() => {