diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 5f172374..788ce96a 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -81,9 +81,11 @@ export const PostThreadItem = observer(function PostThreadItem({ ) const needsTranslation = useMemo( () => - store.preferences.contentLanguages.length > 0 && - !isPostInLanguage(item.post, store.preferences.contentLanguages), - [item.post, store.preferences.contentLanguages], + Boolean( + store.preferences.primaryLanguage && + !isPostInLanguage(item.post, [store.preferences.primaryLanguage]), + ), + [item.post, store.preferences.primaryLanguage], ) const onPressReply = React.useCallback(() => {