From 39c856af2f6612da406de7d7a02b08d64a4721df Mon Sep 17 00:00:00 2001 From: Juan Manuel Gentili Date: Mon, 20 Feb 2023 22:05:49 -0300 Subject: [PATCH] Fix small error in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aaed034a..b529fb85 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Inside the `SupabaseClient` instance created before, you can find an `auth` prop Task { do { try await client.auth.signUp(email: email, password: password) - let session = try await client.session + let session = try await client.auth.session print("### Session Info: \(session)") } catch { print("### Sign Up Error: \(error)") @@ -57,7 +57,7 @@ Task { Task { do { try await client.auth.signIn(email: email, password: password) - let session = try await client.session + let session = try await client.auth.session print("### Session Info: \(session)") } catch { print("### Sign Up Error: \(error)")