about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/state/queries/search-posts.ts19
1 files changed, 7 insertions, 12 deletions
diff --git a/src/state/queries/search-posts.ts b/src/state/queries/search-posts.ts
index 1822577c9..1106f7461 100644
--- a/src/state/queries/search-posts.ts
+++ b/src/state/queries/search-posts.ts
@@ -34,18 +34,13 @@ export function useSearchPostsQuery({
   >({
     queryKey: searchPostsQueryKey({query, sort}),
     queryFn: async ({pageParam}) => {
-      // waiting on new APIs
-      switch (sort) {
-        // case 'top':
-        // case 'latest':
-        default:
-          const res = await getAgent().app.bsky.feed.searchPosts({
-            q: query,
-            limit: 25,
-            cursor: pageParam,
-          })
-          return res.data
-      }
+      const res = await getAgent().app.bsky.feed.searchPosts({
+        q: query,
+        limit: 25,
+        cursor: pageParam,
+        sort,
+      })
+      return res.data
     },
     initialPageParam: undefined,
     getNextPageParam: lastPage => lastPage.cursor,