Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix seedphrase blur issue #1880

Closed
wants to merge 11 commits into from
1 change: 1 addition & 0 deletions android/fastlane/metadata/android/en-US/changelogs/157.txt
Original file line number Diff line number Diff line change
@@ -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
5 changes: 2 additions & 3 deletions lib/authentication/login/views/wallet_created_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -385,11 +385,10 @@ class _WalletCreatedViewState extends State<WalletCreatedView> {
color: colorTokens.textMid, fontWeight: ArFontWeight.book)));

return isBlurred
? ClipRect(
child: ImageFiltered(
? ImageFiltered(
imageFilter: ImageFilter.blur(sigmaX: 5, sigmaY: 5),
child: text,
))
)
: text;
}

Expand Down
7 changes: 0 additions & 7 deletions lib/blocs/profile/profile_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,6 @@ class ProfileCubit extends Cubit<ProfileState> {
_arDriveAuth = arDriveAuth,
super(ProfileCheckingAvailability()) {
promptToAuthenticate();

_arDriveAuth.onAuthStateChanged().listen((user) {
if (user != null) {
emit(ProfileLoggedIn(
user: user, useTurbo: _turboUploadService.useTurboUpload));
}
});
}

Future<bool> isCurrentProfileArConnect() async {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading