fix: empty username is indexer is off

This commit is contained in:
poka 2023-11-24 16:43:10 +01:00
parent a35d6b5cf2
commit 5ccacea46d
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ class HeaderProfile extends StatelessWidget {
return CertificationsScreen(
address: address,
username: duniterIndexer
.walletNameIndexer[address]!);
.walletNameIndexer[address] ??
'');
}),
),
}