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 d14a4f8 commit 0e3cf94Copy full SHA for 0e3cf94
packages/auth/lib/index.js
@@ -20,6 +20,7 @@ import {
20
isAndroid,
21
isBoolean,
22
isNull,
23
+ isOther,
24
isString,
25
isValidUrl,
26
} from '@react-native-firebase/app/lib/common';
@@ -127,7 +128,10 @@ class FirebaseAuthModule extends FirebaseModule {
127
128
// but we need it in Auth if it exists. During app configuration we store
129
// mappings from app name to authDomain, this auth constructor
130
// is a reasonable time to use the mapping and set it into auth natively
- this.native.configureAuthDomain();
131
+ if (!isOther) {
132
+ // Only supported on native platforms
133
+ this.native.configureAuthDomain();
134
+ }
135
}
136
137
get languageCode() {
0 commit comments