Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix prop name in jsdocs #485

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading