Skip to content

Commit

Permalink
fix search bug
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscao633 committed Feb 13, 2025
1 parent 575c50c commit 3e58668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/input/WebsiteSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function WebsiteSelect({

const { data: website } = useWebsite(selectedId as string);

const queryResult = useWebsites({ teamId }, { search });
const queryResult = useWebsites({ teamId }, { search, pageSize: 5 });

const renderValue = () => {
return website?.name;
Expand Down

0 comments on commit 3e58668

Please sign in to comment.