Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Tyler <18113850+dshukertjr@users.noreply.github.com>
  • Loading branch information
bdlukaa and dshukertjr committed Aug 21, 2022
1 parent d4b99b8 commit 0570af0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -327,7 +327,7 @@ Supabase.instance.client.auth.signInWithProvider(

### Custom LocalStorage

As default, `supabase_flutter` uses [`hive`](https://pub.dev/packages/hive) to persist user session. Encryption is disabled by default, since it's necessary a unique key we can not define. To set an `encryptionKey`, do the following:
As default, `supabase_flutter` uses [`hive`](https://pub.dev/packages/hive) to persist the user session. Encryption is disabled by default, since an unique encryption key is necessary, and we can not define it. To set an `encryptionKey`, do the following:

```dart
void main() {
Expand Down Expand Up @@ -370,7 +370,7 @@ Supabase.initialize(
);
```

You can use also `EmptyLocalStorage` to disable session persistance:
You can also use `EmptyLocalStorage` to disable session persistance:

```dart
Supabase.initialize(
Expand Down

0 comments on commit 0570af0

Please sign in to comment.