diff --git a/app/screens/post_options/options/copy_text_option.tsx b/app/screens/post_options/options/copy_text_option.tsx index a770e2d5635..5f444046407 100644 --- a/app/screens/post_options/options/copy_text_option.tsx +++ b/app/screens/post_options/options/copy_text_option.tsx @@ -3,6 +3,7 @@ import Clipboard from '@react-native-clipboard/clipboard'; import React, {useCallback} from 'react'; +import {Platform} from 'react-native'; import {BaseOption} from '@components/common_post_options'; import {SNACK_BAR_TYPE} from '@constants/snack_bar'; @@ -21,7 +22,9 @@ const CopyTextOption = ({bottomSheetId, postMessage, sourceScreen}: Props) => { const handleCopyText = useCallback(async () => { Clipboard.setString(postMessage); await dismissBottomSheet(bottomSheetId); - showSnackBar({barType: SNACK_BAR_TYPE.MESSAGE_COPIED, sourceScreen}); + if ((Platform.OS === 'android' && Platform.Version < 33) || Platform.OS === 'ios') { + showSnackBar({barType: SNACK_BAR_TYPE.MESSAGE_COPIED, sourceScreen}); + } }, [postMessage]); return (