From d709c1c7999ad0fa6839712048faccf34ac6d002 Mon Sep 17 00:00:00 2001 From: joebochill Date: Mon, 25 Sep 2023 07:21:33 -0400 Subject: [PATCH] Fix prop name in jsdocs --- .../components/ChangePasswordDialog/ChangePasswordDialog.tsx | 1 - .../src/screens/AccountDetailsScreen/AccountDetailsScreen.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/login-workflow/src/components/ChangePasswordDialog/ChangePasswordDialog.tsx b/login-workflow/src/components/ChangePasswordDialog/ChangePasswordDialog.tsx index c1e4926e..5b1b7961 100644 --- a/login-workflow/src/components/ChangePasswordDialog/ChangePasswordDialog.tsx +++ b/login-workflow/src/components/ChangePasswordDialog/ChangePasswordDialog.tsx @@ -20,7 +20,6 @@ import CheckCircle from '@mui/icons-material/CheckCircle'; * @param onFinish function called when the button is clicked on success screen * @param onSubmit Callback function to call when the form is submitted * @param onPrevious called when the previous button is clicked - * @param sx styles passed to the underlying root component * @param loading boolean that indicates whether the loading spinner should be displayed * @param currentPasswordTextFieldProps props to pass to the current password field. * @param showSuccessScreen boolean that determines whether to show the success screen or not diff --git a/login-workflow/src/screens/AccountDetailsScreen/AccountDetailsScreen.tsx b/login-workflow/src/screens/AccountDetailsScreen/AccountDetailsScreen.tsx index a62edae9..a8cee404 100644 --- a/login-workflow/src/screens/AccountDetailsScreen/AccountDetailsScreen.tsx +++ b/login-workflow/src/screens/AccountDetailsScreen/AccountDetailsScreen.tsx @@ -11,7 +11,7 @@ import { useErrorManager } from '../../contexts/ErrorContext/useErrorManager'; * @param firstNameLabel label for the first name text field * @param initialFirstName initial value for the first name text field * @param firstNameValidator function that validates the first name text field - * @param firstNameTextFieldProp props to pass to the first name field + * @param firstNameTextFieldProps props to pass to the first name field * @param lastNameLabel label for the last name text field * @param initialLastName initial value for the last name text field * @param lastNameValidator function that validates the last name text field