Skip to content

Commit

Permalink
Update SelectionAutoCompleteInput.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm authored Dec 11, 2024
1 parent 582b015 commit f13479f
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
});
}

0 comments on commit f13479f

Please sign in to comment.