diff options
Diffstat (limited to 'apps/mobile/app')
| -rw-r--r-- | apps/mobile/app/dashboard/bookmarks/[slug]/manage_tags.tsx | 2 | ||||
| -rw-r--r-- | apps/mobile/app/dashboard/search.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/mobile/app/dashboard/bookmarks/[slug]/manage_tags.tsx b/apps/mobile/app/dashboard/bookmarks/[slug]/manage_tags.tsx index ea6c2f4d..a4575b27 100644 --- a/apps/mobile/app/dashboard/bookmarks/[slug]/manage_tags.tsx +++ b/apps/mobile/app/dashboard/bookmarks/[slug]/manage_tags.tsx @@ -35,7 +35,7 @@ const ListPickerPage = () => { }; const { data: allTags, isPending: isAllTagsPending } = api.tags.list.useQuery( - undefined, + {}, { select: React.useCallback( (data: { tags: { id: string; name: string }[] }) => { diff --git a/apps/mobile/app/dashboard/search.tsx b/apps/mobile/app/dashboard/search.tsx index 66423870..5fababc3 100644 --- a/apps/mobile/app/dashboard/search.tsx +++ b/apps/mobile/app/dashboard/search.tsx @@ -10,9 +10,9 @@ import { Text } from "@/components/ui/Text"; import { api } from "@/lib/trpc"; import AsyncStorage from "@react-native-async-storage/async-storage"; import { keepPreviousData } from "@tanstack/react-query"; -import { useDebounce } from "use-debounce"; import { useSearchHistory } from "@karakeep/shared-react/hooks/search-history"; +import { useDebounce } from "@karakeep/shared-react/hooks/use-debounce"; const MAX_DISPLAY_SUGGESTIONS = 5; |
