From c0f5ea29fbc9de12dc4546a56583b78eafd4b38b Mon Sep 17 00:00:00 2001 From: ChaosExAnima Date: Mon, 16 Feb 2026 13:35:36 +0100 Subject: [PATCH] removes the reply instead of resetting the composer --- app/javascript/mastodon/reducers/compose.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/mastodon/reducers/compose.js b/app/javascript/mastodon/reducers/compose.js index 51508c777d8..f2cb8f4de73 100644 --- a/app/javascript/mastodon/reducers/compose.js +++ b/app/javascript/mastodon/reducers/compose.js @@ -446,6 +446,7 @@ export const composeReducer = (state = initialState, action) => { return state.set('is_submitting', true); case COMPOSE_REPLY_CANCEL: + return state.set('in_reply_to', null); case COMPOSE_RESET: case COMPOSE_SUBMIT_SUCCESS: return clearAll(state);