We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27d9c4 commit 8399734Copy full SHA for 8399734
src/utils/get-tokens.ts
@@ -35,6 +35,9 @@ const fetchTokensBatch = async (id: string): Promise<Item[]> => {
35
const response = await fetch(process.env.CURATE_GRAPH_URL, {
36
method: 'POST',
37
body: JSON.stringify(subgraphQuery),
38
+ headers: {
39
+ 'Content-Type': 'application/json',
40
+ },
41
})
42
43
const { data } = await response.json()
0 commit comments