matt HOFFNER
commited on
Commit
·
8fbce5a
1
Parent(s):
3b39ae2
put a limit on it
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: '50',
|
| 18 |
convert: 'USD'
|
| 19 |
});
|
| 20 |
|