Skip to content

Commit 4b4a66f

Browse files
committed
lint fixes
1 parent a0c9570 commit 4b4a66f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/auth/src/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export async function _performApiRequest<T, V>(
148148
headers[HttpHeader.X_FIREBASE_LOCALE] = auth.languageCode;
149149
}
150150

151-
var fetchArgs = {
151+
const fetchArgs = {
152152
method,
153153
headers,
154154
...body

packages/util/src/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export function isWebWorker(): boolean {
102102
/**
103103
* Detect Cloudflare Runner context.
104104
*/
105-
export function isCloudflareRunner() {
105+
export function isCloudflareRunner(): boolean {
106106
return (
107107
typeof navigator !== 'undefined' &&
108108
navigator.userAgent === 'Cloudflare-Workers'

0 commit comments

Comments
 (0)