diff --git a/lib/providers/generate_wallets.dart b/lib/providers/generate_wallets.dart index 066c48e..7a7955b 100644 --- a/lib/providers/generate_wallets.dart +++ b/lib/providers/generate_wallets.dart @@ -271,7 +271,6 @@ class GenerateWalletsProvider with ChangeNotifier { // Needed for bad encoding of UTF-8 word = word.replaceAll('é', 'é'); word = word.replaceAll('è', 'è'); - // TODO: what about á à ó ò í ì ú ù ... ? make a function to clean data int nbrMatch = 0; if (bip39Words(appLang).contains(word.toLowerCase())) { @@ -292,7 +291,6 @@ class GenerateWalletsProvider with ChangeNotifier { // Needed for bad encoding of UTF-8 word = word.replaceAll('é', 'é'); word = word.replaceAll('è', 'è'); - // TODO: what about á à ó ò í ì ú ù ... ? make a function to clean data if (!bip39Words(appLang).contains(word.toLowerCase())) { isValid = false; } diff --git a/lib/widgets/search_identity_query.dart b/lib/widgets/search_identity_query.dart index 400eecb..a7792c1 100644 --- a/lib/widgets/search_identity_query.dart +++ b/lib/widgets/search_identity_query.dart @@ -75,7 +75,7 @@ class SearchIdentityQuery extends StatelessWidget { } searchProvider.resultLenght = identities.length; - // TODO: Find a way to reload a provider here, in Widget build... + // TODO: Find a way to reload a provider here, in Widget build... riverpod refacto needed... double avatarSize = 55; return Expanded(