Skip to content

Commit

Permalink
fix: lower order limit
Browse files Browse the repository at this point in the history
  • Loading branch information
ckthiessen committed Jun 14, 2024
1 parent fff1f17 commit 1a92d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useGetOrders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useQuery } from "@tanstack/react-query";
import { ORDERS_COLLECTION } from "../constants";
import { Order } from "../types/Order";

const ORDER_LIMIT = 3000;
const ORDER_LIMIT = 1000;

const useGetOrders = () => {
return useQuery({
Expand Down

0 comments on commit 1a92d42

Please sign in to comment.