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

th-downstream
Claire 1 year ago committed by GitHub
parent 65b5808421
commit 1164011bad

@ -129,13 +129,13 @@ export function resetCompose() {
}; };
} }
export const focusCompose = (routerHistory, defaultText) => dispatch => { export const focusCompose = (routerHistory, defaultText) => (dispatch, getState) => {
dispatch({ dispatch({
type: COMPOSE_FOCUS, type: COMPOSE_FOCUS,
defaultText, defaultText,
}); });
ensureComposeIsVisible(routerHistory); ensureComposeIsVisible(getState, routerHistory);
}; };
export function mentionCompose(account, routerHistory) { export function mentionCompose(account, routerHistory) {

Loading…
Cancel
Save