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

Commit

Permalink
fix: typo (#423)
Browse files Browse the repository at this point in the history
Co-authored-by: Juan Picado @jotadeveloper <juanpicado19@gmail.com>
  • Loading branch information
jamesgeorge007 and juanpicado committed Jan 14, 2020
1 parent dad44c4 commit 164cea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/api.ts
Expand Up @@ -20,7 +20,7 @@ export function handleResponseType(response: Response): Promise<[boolean, Blob |
return Promise.all([response.ok, response.text()]);
}

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

0 comments on commit 164cea6

Please sign in to comment.