Add default post text to onboarding flow in web UI (#24705)

This commit is contained in:
Eugen Rochko
2023-04-28 10:05:34 +02:00
committed by GitHub
parent 1c61869eed
commit 8979b70975
5 changed files with 16 additions and 6 deletions

View File

@ -126,9 +126,10 @@ export function resetCompose() {
};
}
export const focusCompose = routerHistory => dispatch => {
export const focusCompose = (routerHistory, defaultText) => dispatch => {
dispatch({
type: COMPOSE_FOCUS,
defaultText,
});
ensureComposeIsVisible(routerHistory);