File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
authenticator/src/main/java/com/amplifyframework/ui/authenticator/util Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ interface AuthenticatorMessage {
3939 /* *
4040 * Indicates an informational update for the user, such as the successful completion of an async process.
4141 */
42- interface Information : AuthenticatorMessage
42+ interface Info : AuthenticatorMessage
4343
4444 /* *
4545 * Indicates an error occurred. You may inspect the [cause] for more information.
@@ -71,14 +71,14 @@ internal abstract class AuthenticatorMessageImpl(
7171 */
7272internal object PasswordResetMessage :
7373 AuthenticatorMessageImpl (R .string.amplify_ui_authenticator_message_password_reset),
74- AuthenticatorMessage .Information
74+ AuthenticatorMessage .Info
7575
7676/* *
7777 * A confirmation code was sent to the user.
7878 */
7979internal object CodeSentMessage :
8080 AuthenticatorMessageImpl (R .string.amplify_ui_authenticator_message_code_sent),
81- AuthenticatorMessage .Information
81+ AuthenticatorMessage .Info
8282
8383/* *
8484 * The user cannot reset their password because their account is in an invalid state.
You can’t perform that action at this time.
0 commit comments