Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
uncoolzero committed Jul 9, 2024
1 parent 4f6a41f commit 7364865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/ui/src/hooks/beanstalk/useMarketData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const useMarketData = () => {
const [listings, setListings] = useState<PodListing[] | undefined>();
const [orders, setOrders] = useState<PodOrder[] | undefined>();

const [maxPlaceInLine, setMaxPlaceInLine] = useState<number>();
const [maxPlotSize, setMaxPlotSize] = useState<number>();
const [maxPlaceInLine, setMaxPlaceInLine] = useState<number>(0);
const [maxPlotSize, setMaxPlotSize] = useState<number>(0);

/// Queries
const [getListings] = useAllPodListingsLazyQuery();
Expand Down

0 comments on commit 7364865

Please sign in to comment.