We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e4eac1 commit 036f827Copy full SHA for 036f827
lib/feature/presentation/page/user_registration_setting/user_registration_setting_page.dart
@@ -71,6 +71,9 @@ class _UserRegistrationSettingPageState extends State<UserRegistrationSettingPag
71
final strSignUpMethod = state.response?.signUpMethod ?? '';
72
signUpMethod = SignUpMethodExtension.parseString(strSignUpMethod);
73
signUpMethod ??= SignUpMethod.auto;
74
+ } else if (state is FailureSnackBarSettingState) {
75
+ final errorMessage = state.errorMessage.convertErrorMessageToHumanMessage();
76
+ widgetHelper.showSnackBar(context, errorMessage.hideResponseCode());
77
} else if (state is SuccessUpdateKvSettingState) {
78
widgetHelper.showSnackBar(
79
context,
0 commit comments