File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -176,14 +176,14 @@ export class Provider<T extends Name> {
176
176
// eslint-disable-next-line @typescript-eslint/no-explicit-any
177
177
. map ( service => ( service as any ) . INTERNAL ! . delete ( ) ) ,
178
178
...services
179
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
180
179
. filter (
181
180
service =>
182
181
'delete' in service &&
183
182
this . component &&
184
183
// TODO: remove !== 'app' when modular SDKs become official
185
184
// People call app.delete() to trigger provider.delete() for all registered components, so
186
185
// we don't call delete() on legacy FirebaseApp to avoid getting into a loop.
186
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
187
187
( this . component . name as any ) !== 'app'
188
188
) // modular services
189
189
// eslint-disable-next-line @typescript-eslint/no-explicit-any
You can’t perform that action at this time.
0 commit comments