my fork of the bluesky client

use IAB for translate (#6421)

authored by samuel.fm and committed by

GitHub c81e1497 ebdbf55d

+3 -3
+1 -1
src/components/dms/MessageMenu.tsx
··· 62 62 message.text, 63 63 langPrefs.primaryLanguage, 64 64 ) 65 - openLink(translatorUrl) 65 + openLink(translatorUrl, true) 66 66 }, [langPrefs.primaryLanguage, message.text, openLink]) 67 67 68 68 const onDelete = React.useCallback(() => {
+1 -1
src/view/com/post-thread/PostThreadItem.tsx
··· 737 737 const isRootPost = !('reply' in post.record) 738 738 739 739 const onTranslatePress = React.useCallback(() => { 740 - openLink(translatorUrl) 740 + openLink(translatorUrl, true) 741 741 }, [openLink, translatorUrl]) 742 742 743 743 return (
+1 -1
src/view/com/util/forms/PostDropdownBtn.tsx
··· 241 241 }, [_, richText]) 242 242 243 243 const onPressTranslate = React.useCallback(async () => { 244 - await openLink(translatorUrl) 244 + await openLink(translatorUrl, true) 245 245 }, [openLink, translatorUrl]) 246 246 247 247 const onHidePost = React.useCallback(() => {