Fix typing error

pull/5266/head
Kamran Ahmed 9 months ago
parent dcef07d7c6
commit f6cd6419be
  1. 2
      src/lib/http.ts

@ -36,7 +36,7 @@ export async function httpCall<
options?: HttpOptionsType,
): Promise<ApiReturn<ResponseType, ErrorType>> {
try {
const fingerprintPromise = await fp.load({ monitoring: false });
const fingerprintPromise = await fp.load();
const fingerprint = await fingerprintPromise.get();
const response = await fetch(url, {

Loading…
Cancel
Save