matt HOFFNER
commited on
Commit
β’
8e5683a
1
Parent(s):
8fbce5a
smaller limit
Browse files- 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: '
|
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 |
|