mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-11 05:14:46 +00:00
parent
a6f61c595f
commit
ac1c198940
2 changed files with 2 additions and 2 deletions
lib
|
@ -71,7 +71,7 @@ class SeedVerificationStepView extends StatelessWidget {
|
|||
return GestureDetector(
|
||||
onTap: () async {
|
||||
final isCorrectWord = walletSeedViewModel.isChosenWordCorrect(option);
|
||||
final isSecondWrongEntry = walletSeedViewModel.wrongEntries == 2;
|
||||
final isSecondWrongEntry = walletSeedViewModel.wrongEntries >= 2;
|
||||
if (!isCorrectWord) {
|
||||
await showBar<void>(
|
||||
context,
|
||||
|
|
|
@ -221,7 +221,7 @@ class ExceptionHandler {
|
|||
// just ignoring until we find a solution to this issue or migrate from flutter secure storage
|
||||
"core/auth_service.dart:63",
|
||||
"core/key_service.dart:14",
|
||||
"core/wallet_loading_service.dart:132",
|
||||
"core/wallet_loading_service.dart:133",
|
||||
];
|
||||
|
||||
static Future<void> _addDeviceInfo(File file) async {
|
||||
|
|
Loading…
Reference in a new issue