diff --git a/lib/user/name/presentation/bloc/profile_name_bloc.dart b/lib/user/name/presentation/bloc/profile_name_bloc.dart index eb799b34d..3d088db83 100644 --- a/lib/user/name/presentation/bloc/profile_name_bloc.dart +++ b/lib/user/name/presentation/bloc/profile_name_bloc.dart @@ -77,8 +77,6 @@ class ProfileNameBloc extends Bloc { final getLogo = refreshLogo || profileLogoTxId == null; - logger.d('Getting primary name with getLogo: $getLogo'); - var primaryNameDetails = await _arnsRepository.getPrimaryName( walletAddress, update: refreshName, diff --git a/test/user/name/presentation/bloc/profile_name_bloc_test.dart b/test/user/name/presentation/bloc/profile_name_bloc_test.dart index ea2a13fdb..8fa203412 100644 --- a/test/user/name/presentation/bloc/profile_name_bloc_test.dart +++ b/test/user/name/presentation/bloc/profile_name_bloc_test.dart @@ -38,7 +38,7 @@ void main() { 'emits [ProfileNameLoading, ProfileNameLoaded] when LoadProfileName is successful', build: () { when(() => arnsRepository.getPrimaryName(testWalletAddress, - update: false, getLogo: false)) + update: false, getLogo: true)) .thenAnswer((_) async => const PrimaryNameDetails( primaryName: testPrimaryName, logo: null,