Skip to content
Snippets Groups Projects
Unverified Commit ed96e28c authored by Claire's avatar Claire Committed by GitHub
Browse files

Fix compose form not being shown when clicking “Make your first post” on mobile (#25581)

parent 7b024baf
No related branches found
No related tags found
No related merge requests found
......@@ -129,13 +129,13 @@ export function resetCompose() {
};
}
export const focusCompose = (routerHistory, defaultText) => dispatch => {
export const focusCompose = (routerHistory, defaultText) => (dispatch, getState) => {
dispatch({
type: COMPOSE_FOCUS,
defaultText,
});
ensureComposeIsVisible(routerHistory);
ensureComposeIsVisible(getState, routerHistory);
};
export function mentionCompose(account, routerHistory) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment