diff --git a/src/libs/focusComposerWithDelay/index.ts b/src/libs/focusComposerWithDelay/index.ts index 195f66e3151e..ab251bf8403a 100644 --- a/src/libs/focusComposerWithDelay/index.ts +++ b/src/libs/focusComposerWithDelay/index.ts @@ -32,7 +32,7 @@ function focusComposerWithDelay(textInput: InputType | null): FocusComposerWithD return; } // When the closing modal has a focused text input focus() needs a delay to properly work. - // Setting 150ms here is a temporary workaround for the Android HybridApp. It should be reverted once we identify the real root cause of the issue. + // Setting 150ms here is a temporary workaround for the Android HybridApp. It should be reverted once we identify the real root cause of this issue: https://github.com/Expensify/App/issues/56311. setTimeout(() => textInput.focus(), 150); if (forcedSelectionRange) { setTextInputSelection(textInput, forcedSelectionRange);