We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e128c9 commit d281284Copy full SHA for d281284
packages-exp/app-compat/src/lite/firebaseNamespaceLite.ts
@@ -40,8 +40,8 @@ export function createFirebaseNamespaceLite(): FirebaseNamespace {
40
// only allow performance to register with firebase lite
41
if (
42
component.type === ComponentType.PUBLIC &&
43
- component.name.includes('performance') &&
44
- component.name.includes('installations')
+ !component.name.includes('performance') &&
+ !component.name.includes('installations')
45
) {
46
throw Error(`${name} cannot register with the standalone perf instance`);
47
}
0 commit comments