Skip to content

Commit 5a43db0

Browse files
committed
fix: unresponsive screen
1 parent 890d2c6 commit 5a43db0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/Scenes/Inbox/Components/Conversations/OfferSubmittedModal.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ export const OfferSubmittedModal: React.FC = () => {
1515
setOfferData({ code: args.orderCode ?? "", message: args.message ?? "" })
1616
goBack()
1717
// Wait for the back animation to finish before showing the modal
18-
InteractionManager.runAfterInteractions(() => {
18+
setTimeout(() => {
1919
setVisible(true)
20-
})
20+
}, 2000)
2121
}
2222
)
2323

0 commit comments

Comments
 (0)