mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-29 03:59:54 +02:00
Fix typing error
This commit is contained in:
@@ -36,7 +36,7 @@ export async function httpCall<
|
|||||||
options?: HttpOptionsType,
|
options?: HttpOptionsType,
|
||||||
): Promise<ApiReturn<ResponseType, ErrorType>> {
|
): Promise<ApiReturn<ResponseType, ErrorType>> {
|
||||||
try {
|
try {
|
||||||
const fingerprintPromise = await fp.load({ monitoring: false });
|
const fingerprintPromise = await fp.load();
|
||||||
const fingerprint = await fingerprintPromise.get();
|
const fingerprint = await fingerprintPromise.get();
|
||||||
|
|
||||||
const response = await fetch(url, {
|
const response = await fetch(url, {
|
||||||
|
Reference in New Issue
Block a user