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 7e02dfc commit fd8d817Copy full SHA for fd8d817
src/components/common/apiCalls/jiffyApis.tsx
@@ -1128,7 +1128,7 @@ export const fetchData = async (item : ItemProps) => {
1128
try {
1129
const res = await fetch(`${API_URL}/v0/getUserOpLogs?userOpHash=${item.userOpHash}&network=${item.network}`, {
1130
headers: {
1131
- 'x-api-key': X_API_Key || 'TestAPIKeyDontUseInCode',
+ 'x-api-key': X_API_Key ,
1132
},
1133
});
1134
if (!res.ok) {
@@ -1153,4 +1153,4 @@ export const fetchNetworkData = async (term: string): Promise<NetworkResponse[]>
1153
}
1154
})
1155
);
1156
- };
+ };
0 commit comments