diff --git a/android/fastlane/metadata/android/en-US/changelogs/157.txt b/android/fastlane/metadata/android/en-US/changelogs/157.txt new file mode 100644 index 0000000000..b57892ee75 --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/157.txt @@ -0,0 +1 @@ +- Fixes an issue that mistakenly redirects the user to the Drive Explorer instead of Tutorials Page when creating a wallet from ArDrive diff --git a/lib/authentication/login/views/wallet_created_view.dart b/lib/authentication/login/views/wallet_created_view.dart index d54c66ba66..5771740c77 100644 --- a/lib/authentication/login/views/wallet_created_view.dart +++ b/lib/authentication/login/views/wallet_created_view.dart @@ -385,11 +385,10 @@ class _WalletCreatedViewState extends State { color: colorTokens.textMid, fontWeight: ArFontWeight.book))); return isBlurred - ? ClipRect( - child: ImageFiltered( + ? ImageFiltered( imageFilter: ImageFilter.blur(sigmaX: 5, sigmaY: 5), child: text, - )) + ) : text; } diff --git a/lib/blocs/profile/profile_cubit.dart b/lib/blocs/profile/profile_cubit.dart index 6ebbf79e80..56536d7e60 100644 --- a/lib/blocs/profile/profile_cubit.dart +++ b/lib/blocs/profile/profile_cubit.dart @@ -36,13 +36,6 @@ class ProfileCubit extends Cubit { _arDriveAuth = arDriveAuth, super(ProfileCheckingAvailability()) { promptToAuthenticate(); - - _arDriveAuth.onAuthStateChanged().listen((user) { - if (user != null) { - emit(ProfileLoggedIn( - user: user, useTurbo: _turboUploadService.useTurboUpload)); - } - }); } Future isCurrentProfileArConnect() async { diff --git a/pubspec.yaml b/pubspec.yaml index bcb3fd057e..ea2db77505 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: Secure, permanent storage publish_to: 'none' -version: 2.55.0 +version: 2.55.1 environment: sdk: '>=3.2.0 <4.0.0'