Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
RJFelix committed Feb 2, 2024
1 parent 603eaef commit 1b9df64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/src/components/Input/PasswordInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import BaseInput from "./BaseInput";
* @returns
*/
export default function PasswordInput({
label = "Password",
label = "Choose a password",
showError,
errorMessage = "Please enter your password",
...props
Expand All @@ -19,7 +19,7 @@ export default function PasswordInput({
aria-describedby="userfront-password-rules"
showError={showError}
errorMessage={errorMessage}
label="Choose a password"
label={label}
{...props}
/>
);
Expand Down

0 comments on commit 1b9df64

Please sign in to comment.