Skip to content

Commit 7092c9c

Browse files
committed
Fixes linting error
1 parent 961fd51 commit 7092c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/utils/fileUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function downloadFile(params: {
2727
error.name = ErrorName.URL_MAY_NOT_INCLUDE_BASIC_AITH;
2828
throw error;
2929
}
30-
let fetchSignal = AbortSignal.any([abortController.signal, timeoutSignal])
30+
const fetchSignal = AbortSignal.any([abortController.signal, timeoutSignal])
3131
const response = await fetch(url, { method: "GET", headers, signal: fetchSignal })
3232
if (!response.body) {
3333
throw new Error("Response body unavailable");

0 commit comments

Comments
 (0)