From 87fbc9eee344b5814634140cd4915b78e2467851 Mon Sep 17 00:00:00 2001 From: Mateusz Rajski Date: Wed, 5 Feb 2025 18:02:14 +0100 Subject: [PATCH] Add reference to issue --- src/libs/focusComposerWithDelay/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);