diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index 305790cb18..7746d93c30 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -564,31 +564,33 @@ export const ComposePost = ({
onPostSuccess?.(postSuccessData)
}
onClose()
- Toast.show(
-
-
-
- {thread.posts.length > 1
- ? _(msg`Your posts were sent`)
- : replyTo
- ? _(msg`Your reply was sent`)
- : _(msg`Your post was sent`)}
-
- {postUri && (
- {
- const {host: name, rkey} = new AtUri(postUri)
- navigation.navigate('PostThread', {name, rkey})
- }}>
-
- View
-
-
- )}
- ,
- {type: 'success'},
- )
+ setTimeout(() => {
+ Toast.show(
+
+
+
+ {thread.posts.length > 1
+ ? _(msg`Your posts were sent`)
+ : replyTo
+ ? _(msg`Your reply was sent`)
+ : _(msg`Your post was sent`)}
+
+ {postUri && (
+ {
+ const {host: name, rkey} = new AtUri(postUri)
+ navigation.navigate('PostThread', {name, rkey})
+ }}>
+
+ View
+
+
+ )}
+ ,
+ {type: 'success'},
+ )
+ }, 500)
}, [
_,
agent,