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

put a limit on it

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: '5000',
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: '50',
18
  convert: 'USD'
19
  });
20