Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

QMAPS-2785 mobile throttling #1381

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ui/Suggest.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ const Suggest = ({
onBlur: () => {
// The mouseLeave flag allows to keep the suggest open when clicking outside of the browser
if (!window.mouseLeave) {
setHasFocus(false, 150);
setHasFocus(false, isMobile ? 300 : 150);
}
},
highlightedValue: highlighted ? getInputValue(highlighted) : null,
Expand Down