This commit is contained in:
lloydzhou 2024-10-09 11:46:49 +08:00
parent d51d31a559
commit 6c1cbe120c
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ export function fetch(url: string, options?: RequestInit): Promise<any> {
headers, headers,
}); });
if (status >= 300) { if (status >= 300) {
setTimeout(close, 50); setTimeout(close, 100);
} }
return response; return response;
}) })