Skip to content

Commit

Permalink
chore: alphabetization
Browse files Browse the repository at this point in the history
  • Loading branch information
jjarvisp committed Feb 18, 2025
1 parent 88039f1 commit 830d3ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/machines/authenticator/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ const ACTIONS: MachineOptions<AuthActorContext, AuthEvent>['actions'] = {
handleBlur,
handleInput,
handleSubmit,
setAllowedMfaTypes,
setChallengeName,
setCodeDeliveryDetails,
setFieldErrors,
Expand All @@ -261,7 +262,6 @@ const ACTIONS: MachineOptions<AuthActorContext, AuthEvent>['actions'] = {
setUsernameForgotPassword,
setUsernameSignIn,
setUsernameSignUp,
setAllowedMfaTypes,
};

export default ACTIONS;
1 change: 0 additions & 1 deletion packages/ui/src/types/authenticator/attributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export const authFieldsWithDefaults = [
'confirmation_code',
'password',
'confirm_password',
'mfa_type',
] as const;

/** Input fields that we provide default fields with */
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/types/authenticator/form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export type FormFieldComponents =
| 'confirmSignUp'
| 'confirmVerifyUser'
| 'forgotPassword'
| 'setupTotp'
| 'setupEmail'
| 'selectMfaType';
| 'selectMfaType'
| 'setupTotp';

/**
* Used to customize form field attributes for each authenticator screen.
Expand Down

0 comments on commit 830d3ea

Please sign in to comment.