diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index d73d9c7b27..8c34d2a51d 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -1141,41 +1141,57 @@ export const ComposePost = ({ {!IS_WEBFooterSticky && footer} - - - - {composerState.draftId ? ( - Save changes? - ) : ( - Save draft? - )} - - - {composerState.draftId - ? _( - msg`You have unsaved changes to this draft, would you like to save them?`, - ) - : _(msg`Would you like to save this as a draft to edit later?`)} - - - - - - - - + {replyTo ? ( + + ) : ( + + + + {composerState.draftId ? ( + Save changes? + ) : ( + Save draft? + )} + + + {composerState.draftId ? ( + + You have unsaved changes to this draft, would you like to + save them? + + ) : ( + + Would you like to save this as a draft to edit later? + + )} + + + + + + + + + )} )