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 672a7cf commit f9f9cddCopy full SHA for f9f9cdd
packages/amplify_authenticator/lib/src/state/auth_state.dart
@@ -94,10 +94,5 @@ class ConfirmSignInCustom extends UnauthenticatedState {
94
class PendingVerificationCheckState extends UnauthenticatedState {
95
const PendingVerificationCheckState({
96
required AuthenticatorStep step,
97
- }) : assert(
98
- step == AuthenticatorStep.signIn ||
99
- step == AuthenticatorStep.confirmSignUp,
100
- 'Invalid AuthenticatorStep type: $step',
101
- ),
102
- super(step: step);
+ }) : super(step: step);
103
}
0 commit comments