Skip to content

Commit

Permalink
chore(ardrive auth): corrects typo PE-4477
Browse files Browse the repository at this point in the history
  • Loading branch information
matibat committed Sep 28, 2023
1 parent 543e2e4 commit b48646f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/authentication/ardrive_auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class ArDriveAuthImpl implements ArDriveAuth {
await _secureKeyValueStore.remove('biometricEnabled');
currentUser = null;
firstPrivateDriveTxId = null;
await _disconnectFromArConnecct();
await _disconnectFromArConnect();
_userStreamController.add(null);
}

Expand All @@ -232,7 +232,7 @@ class ArDriveAuthImpl implements ArDriveAuth {
}
}

Future<void> _disconnectFromArConnecct() async {
Future<void> _disconnectFromArConnect() async {
final hasArConnectPermissions = await _arConnectService.checkPermissions();
if (hasArConnectPermissions) {
try {
Expand Down

0 comments on commit b48646f

Please sign in to comment.