Skip to content
Snippets Groups Projects
Commit 532a004f authored by poka's avatar poka
Browse files

remove old todo

parent 22c59613
No related branches found
No related tags found
1 merge request!56Fix/build ios
...@@ -271,7 +271,6 @@ class GenerateWalletsProvider with ChangeNotifier { ...@@ -271,7 +271,6 @@ class GenerateWalletsProvider with ChangeNotifier {
// Needed for bad encoding of UTF-8 // Needed for bad encoding of UTF-8
word = word.replaceAll('é', 'é'); word = word.replaceAll('é', 'é');
word = word.replaceAll('è', 'è'); word = word.replaceAll('è', 'è');
// TODO: what about á à ó ò í ì ú ù ... ? make a function to clean data
int nbrMatch = 0; int nbrMatch = 0;
if (bip39Words(appLang).contains(word.toLowerCase())) { if (bip39Words(appLang).contains(word.toLowerCase())) {
...@@ -292,7 +291,6 @@ class GenerateWalletsProvider with ChangeNotifier { ...@@ -292,7 +291,6 @@ class GenerateWalletsProvider with ChangeNotifier {
// Needed for bad encoding of UTF-8 // Needed for bad encoding of UTF-8
word = word.replaceAll('é', 'é'); word = word.replaceAll('é', 'é');
word = word.replaceAll('è', 'è'); word = word.replaceAll('è', 'è');
// TODO: what about á à ó ò í ì ú ù ... ? make a function to clean data
if (!bip39Words(appLang).contains(word.toLowerCase())) { if (!bip39Words(appLang).contains(word.toLowerCase())) {
isValid = false; isValid = false;
} }
......
...@@ -75,7 +75,7 @@ class SearchIdentityQuery extends StatelessWidget { ...@@ -75,7 +75,7 @@ class SearchIdentityQuery extends StatelessWidget {
} }
searchProvider.resultLenght = identities.length; 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; double avatarSize = 55;
return Expanded( return Expanded(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment