Skip to content

Commit e371ca2

Browse files
committed
fix: increase model pricing query limit from 10 to 50 for improved data retrieval
1 parent a27e0d8 commit e371ca2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client/components/aiGateway/AIGatewayPricingModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const AIGatewayPricingModal: React.FC<AIGatewayPricingModalProps> = ({
4242
const { data, isLoading, error } = trpc.aiGateway.modelPricing.useQuery({
4343
workspaceId,
4444
search: debouncedSearchTerm || undefined,
45-
limit: 10,
45+
limit: 50,
4646
});
4747

4848
const formatPrice = (price: number) => {

0 commit comments

Comments
 (0)