Skip to content

Commit d781c67

Browse files
authoredSep 29, 2023
Fix comment for signup (#356)
1 parent 88aa8eb commit d781c67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎auth-next/email.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function signUpWithEmailPassword() {
3232
const auth = getAuth();
3333
createUserWithEmailAndPassword(auth, email, password)
3434
.then((userCredential) => {
35-
// Signed in
35+
// Signed up
3636
const user = userCredential.user;
3737
// ...
3838
})

‎snippets/auth-next/email/auth_signup_password.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { getAuth, createUserWithEmailAndPassword } from "firebase/auth";
1010
const auth = getAuth();
1111
createUserWithEmailAndPassword(auth, email, password)
1212
.then((userCredential) => {
13-
// Signed in
13+
// Signed up
1414
const user = userCredential.user;
1515
// ...
1616
})

0 commit comments

Comments
 (0)
Please sign in to comment.