From f13479f2f86753b42691bbc9dd615f0d746196e0 Mon Sep 17 00:00:00 2001 From: Marco polo Date: Wed, 11 Dec 2024 14:49:00 -0500 Subject: [PATCH] Update SelectionAutoCompleteInput.tsx --- .../src/selection/SelectionAutoCompleteInput.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/js_modules/dagster-ui/packages/ui-core/src/selection/SelectionAutoCompleteInput.tsx b/js_modules/dagster-ui/packages/ui-core/src/selection/SelectionAutoCompleteInput.tsx index feea0e8e15d71..65ccfe92a3abd 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/selection/SelectionAutoCompleteInput.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/selection/SelectionAutoCompleteInput.tsx @@ -198,13 +198,11 @@ const GlobalHintStyles = createGlobalStyle` function showHint(instance: Editor, hint: HintFunction) { requestAnimationFrame(() => { - requestAnimationFrame(() => { - instance.showHint({ - hint, - completeSingle: false, - moveOnOverlap: true, - updateOnCursorActivity: true, - }); + instance.showHint({ + hint, + completeSingle: false, + moveOnOverlap: true, + updateOnCursorActivity: true, }); }); }