diff --git a/src/client/lazy-app/util/index.ts b/src/client/lazy-app/util/index.ts index bb06974b..864c99e1 100644 --- a/src/client/lazy-app/util/index.ts +++ b/src/client/lazy-app/util/index.ts @@ -380,7 +380,7 @@ export function assertSignal(signal: AbortSignal) { * Take a signal and promise, and returns a promise that rejects with an AbortError if the abort is * signalled, otherwise resolves with the promise. */ -export async function abortable( +export function abortable( signal: AbortSignal, promise: Promise, ): Promise {