Skip to content

Commit 26a6037

Browse files
committed
🎨 #14589
1 parent 53aacb8 commit 26a6037

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/src/mobile/util/keyboardToolbar.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,9 @@ export const hideKeyboardToolbar = () => {
462462
};
463463

464464
export const activeBlur = () => {
465-
window.JSAndroid?.hideKeyboard();
465+
if (window.JSAndroid) {
466+
window.JSAndroid.hideKeyboard();
467+
}
466468
hideKeyboardToolbar();
467469
(document.activeElement as HTMLElement).blur();
468470
};

0 commit comments

Comments
 (0)