Skip to content

Commit 2c4a46e

Browse files
committed
auth format
1 parent 0601594 commit 2c4a46e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

packages/auth/test/helpers/integration/emulator_rest_helpers.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,8 @@ function doFetch(url: string, request?: RequestInit): ReturnType<typeof fetch> {
8787
if (typeof document !== 'undefined') {
8888
return fetch(url, request);
8989
} else {
90-
return fetch(
91-
url,
92-
request as RequestInit
93-
) as unknown as ReturnType<typeof fetch>;
90+
return fetch(url, request as RequestInit) as unknown as ReturnType<
91+
typeof fetch
92+
>;
9493
}
9594
}

0 commit comments

Comments
 (0)