Update firebase DB url. (#53166)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/53166

Our DB doesn't have that suffix, so I'm removing it.

Changelog:
[Internal] [Changed] -

Reviewed By: cipolleschi

Differential Revision: D79883740

fbshipit-source-id: a52ab275129807cbb6e066baefccd71a8ac7398d
This commit is contained in:
Nicola Corti
2025-08-08 08:05:54 -07:00
committed by Facebook GitHub Bot
parent e16def43c9
commit ec9f62865c
2 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ class FirebaseClient {
this.password = process.env.FIREBASE_APP_PASS;
this.apiKey = process.env.FIREBASE_APP_APIKEY;
this.projectId = process.env.FIREBASE_APP_PROJECTNAME;
this.databaseUrl = `${this.projectId}-default-rtdb.firebaseio.com`;
this.databaseUrl = `${this.projectId}.firebaseio.com`;
this.idToken = null;
}