1
0
Fork 0
mirror of synced 2024-06-14 08:44:49 +12:00

Rectified apple GETTING_STARTED.md

Removed phone number from account.create() function as it does not accept it.
This commit is contained in:
Pratik Gupta 2023-10-24 09:01:28 +05:30 committed by GitHub
parent da504ba46c
commit 9eea574df5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,6 @@ do {
let user = try await account.create(
userId: ID.unique(),
email: "email@example.com",
phone: "+123456789",
password: "password",
name: "Walter O'Brien"
)
@ -104,7 +103,6 @@ func main() {
let user = try await account.create(
userId: ID.unique(),
email: "email@example.com",
phone: "+123456789",
password: "password",
name: "Walter O'Brien"
)