diff --git a/app/screens/post_options/options/copy_text_option.tsx b/app/screens/post_options/options/copy_text_option.tsx index e7da304a0..a770e2d56 100644 --- a/app/screens/post_options/options/copy_text_option.tsx +++ b/app/screens/post_options/options/copy_text_option.tsx @@ -19,8 +19,8 @@ type Props = { } const CopyTextOption = ({bottomSheetId, postMessage, sourceScreen}: Props) => { const handleCopyText = useCallback(async () => { - await dismissBottomSheet(bottomSheetId); Clipboard.setString(postMessage); + await dismissBottomSheet(bottomSheetId); showSnackBar({barType: SNACK_BAR_TYPE.MESSAGE_COPIED, sourceScreen}); }, [postMessage]);