diff --git a/catalyst_voices/apps/voices/integration_test/pageobject/onboarding_page.dart b/catalyst_voices/apps/voices/integration_test/pageobject/onboarding_page.dart index 1c7e3acf455..4b4de4e9a76 100644 --- a/catalyst_voices/apps/voices/integration_test/pageobject/onboarding_page.dart +++ b/catalyst_voices/apps/voices/integration_test/pageobject/onboarding_page.dart @@ -101,40 +101,28 @@ class OnboardingPage { expect(infoPartTaskPicture($), findsOneWidget); break; case RegistrationState.checkYourKeychain: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.createKeychain: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.keychainCreated: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.keychainRestoreInfo: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.keychainRestoreInput: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.keychainRestoreStart: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.keychainRestoreSuccess: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.mnemonicInput: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.mnemonicVerified: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.mnemonicWritedown: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.passwordInfo: - // TODO: Handle this case. throw UnimplementedError(); case RegistrationState.passwordInput: - // TODO: Handle this case. throw UnimplementedError(); } } diff --git a/catalyst_voices/apps/voices/integration_test/utils/translations_utils.dart b/catalyst_voices/apps/voices/integration_test/utils/translations_utils.dart index f3064792d01..3e409608a63 100644 --- a/catalyst_voices/apps/voices/integration_test/utils/translations_utils.dart +++ b/catalyst_voices/apps/voices/integration_test/utils/translations_utils.dart @@ -1,6 +1,6 @@ -//wrapper that we should adapt to read actual i18n translations we use in the app +//wrapper that we should adapt to read actual i18n translations we use in app //it will also support different locales once we have it -//right now this class is here so we can easily replace this implementation and know where +//now this is here so we can easily replace this implementation and know where class T { static String get(String key, {String? locale}) { return key; diff --git a/catalyst_voices/apps/voices/lib/pages/registration/widgets/information_panel.dart b/catalyst_voices/apps/voices/lib/pages/registration/widgets/information_panel.dart index 9f270fe665f..12c160c2455 100644 --- a/catalyst_voices/apps/voices/lib/pages/registration/widgets/information_panel.dart +++ b/catalyst_voices/apps/voices/lib/pages/registration/widgets/information_panel.dart @@ -30,7 +30,8 @@ class InformationPanel extends StatelessWidget { body: body, ), const SizedBox(height: 12), - Expanded(key: const Key('PictureContainer'), child: Center(child: picture)), + Expanded( + key: const Key('PictureContainer'), child: Center(child: picture),), const SizedBox(height: 12), _Footer( progress: progress,