Skip to content

Commit

Permalink
Fix typescript misc (#209)
Browse files Browse the repository at this point in the history
* Test for errors

* Try again

* Fix misc.tsx

* Fix typescript error
  • Loading branch information
ethanstrominger authored Jun 22, 2024
1 parent 1bcbe85 commit 93c6401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heat-stack/app/utils/misc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export function useDebounce<
)
}

export async function downloadFile(url: string, retries: number = 0) {
export async function downloadFile(url: string, retries: number = 0): Promise<any> {
const MAX_RETRIES = 3
try {
const response = await fetch(url)
Expand Down

0 comments on commit 93c6401

Please sign in to comment.