Skip to content

Commit e5e3acd

Browse files
committed
Fix linter
1 parent 4d279f7 commit e5e3acd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/data-connect/src/core/AppCheckTokenProvider.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class AppCheckTokenProvider {
3434
) {
3535
this.appCheck = appCheckProvider?.getImmediate({ optional: true });
3636
if (!this.appCheck) {
37-
appCheckProvider
37+
void appCheckProvider
3838
?.get()
3939
.then(appCheck => (this.appCheck = appCheck))
4040
.catch();
@@ -61,10 +61,9 @@ export class AppCheckTokenProvider {
6161
}
6262

6363
addTokenChangeListener(listener: AppCheckTokenListener): void {
64-
this.appCheckProvider
64+
void this.appCheckProvider
6565
?.get()
6666
.then(appCheck => appCheck.addTokenListener(listener))
67-
.catch();
6867
}
6968

7069
// Not currently used at the moment. Will update if needed.

0 commit comments

Comments
 (0)