diff options
Diffstat (limited to 'apps/mobile')
| -rw-r--r-- | apps/mobile/app/dashboard/search.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mobile/app/dashboard/search.tsx b/apps/mobile/app/dashboard/search.tsx index 5fababc3..ab89ce8d 100644 --- a/apps/mobile/app/dashboard/search.tsx +++ b/apps/mobile/app/dashboard/search.tsx @@ -19,7 +19,7 @@ const MAX_DISPLAY_SUGGESTIONS = 5; export default function Search() { const [search, setSearch] = useState(""); - const [query] = useDebounce(search, 10); + const query = useDebounce(search, 10); const inputRef = useRef<TextInput>(null); const [isInputFocused, setIsInputFocused] = useState(true); |
