Update compose_panel.tsx to pass focusTarget to (#39843)

This commit is contained in:
Shlee
2026-07-16 22:10:02 +09:30
committed by GitHub
parent 783496e155
commit 0c143e4aa8

View File

@@ -71,7 +71,7 @@ export const RedirectToMobileComposeIfNeeded: React.FC = () => {
useLayoutEffect(() => {
if (shouldRedirect) {
history.push('/publish');
history.push('/publish', { focusTarget: false });
}
}, [history, shouldRedirect]);