Skip to content

Commit 7156e6c

Browse files
authored
chore: add missing whitespace & fix an incorrect snippet (#352)
* chore: add missing whitespace * chore: fix an incorrect snippet (#324)
1 parent 10cfebc commit 7156e6c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

auth-next/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function setLanguageCode() {
8787
const auth = getAuth();
8888
auth.languageCode = 'it';
8989
// To apply the default browser preference instead of explicitly setting it.
90-
// firebase.auth().useDeviceLanguage();
90+
// auth.useDeviceLanguage();
9191
// [END auth_set_language_code]
9292
}
9393

database-next/read-and-write.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function socialListenStarCount() {
4444
}
4545

4646
// [START rtdb_social_listen_star_count]
47-
const { getDatabase, ref, onValue} = require("firebase/database");
47+
const { getDatabase, ref, onValue } = require("firebase/database");
4848

4949
const db = getDatabase();
5050
const starCountRef = ref(db, 'posts/' + postId + '/starCount');

snippets/auth-next/index/auth_set_language_code.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ import { getAuth } from "firebase/auth";
1010
const auth = getAuth();
1111
auth.languageCode = 'it';
1212
// To apply the default browser preference instead of explicitly setting it.
13-
// firebase.auth().useDeviceLanguage();
13+
// auth.useDeviceLanguage();
1414
// [END auth_set_language_code_modular]

snippets/database-next/read-and-write/rtdb_social_listen_star_count.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// 'npm run snippets'.
66

77
// [START rtdb_social_listen_star_count_modular]
8-
import { getDatabase, ref, onValue} from "firebase/database";
8+
import { getDatabase, ref, onValue } from "firebase/database";
99

1010
const db = getDatabase();
1111
const starCountRef = ref(db, 'posts/' + postId + '/starCount');

0 commit comments

Comments
 (0)