Skip to content
This repository was archived by the owner on Jan 16, 2022. It is now read-only.

Commit 164cea6

Browse files
fix: typo (#423)
Co-authored-by: Juan Picado @jotadeveloper <juanpicado19@gmail.com>
1 parent dad44c4 commit 164cea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function handleResponseType(response: Response): Promise<[boolean, Blob |
2020
return Promise.all([response.ok, response.text()]);
2121
}
2222

23-
// unfortunatelly on download files there is no header available
23+
// unfortunately on download files there is no header available
2424
if (response.url && response.url.endsWith('.tgz') === true) {
2525
return Promise.all([response.ok, response.blob()]);
2626
}

0 commit comments

Comments
 (0)