diff options
Diffstat (limited to 'packages/db/src/runtime/utils.ts')
-rw-r--r-- | packages/db/src/runtime/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/db/src/runtime/utils.ts b/packages/db/src/runtime/utils.ts index 0c2e820e0..64301c39e 100644 --- a/packages/db/src/runtime/utils.ts +++ b/packages/db/src/runtime/utils.ts @@ -11,7 +11,7 @@ export async function safeFetch( options: Parameters<typeof fetch>[1] = {}, onNotOK: (response: Response) => void | Promise<void> = () => { throw new Error(`Request to ${url} returned a non-OK status code.`); - } + }, ): Promise<Response> { const response = await fetch(url, options); |