matt HOFFNER commited on
Commit
8e5683a
β€’
1 Parent(s): 8fbce5a

smaller limit

Browse files
Files changed (1) hide show
  1. app/tools/coin.ts +1 -1
app/tools/coin.ts CHANGED
@@ -14,7 +14,7 @@ function createCoinMarketCapApi({ apiKey }: { apiKey: string }) {
14
  // For demonstration, I'm using static parameters that you might want to customize
15
  const queryParams = new URLSearchParams({
16
  start: '1',
17
- limit: '50',
18
  convert: 'USD'
19
  });
20
 
 
14
  // For demonstration, I'm using static parameters that you might want to customize
15
  const queryParams = new URLSearchParams({
16
  start: '1',
17
+ limit: '20',
18
  convert: 'USD'
19
  });
20