1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-28 19:49:50 +02:00

Fix typing error

This commit is contained in:
Kamran Ahmed
2024-02-29 11:41:05 +00:00
parent dcef07d7c6
commit f6cd6419be

View File

@@ -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, {