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

PWA-3269 :Props error on Checkout page #4303

Merged
merged 1 commit into from
Jul 31, 2024
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 @@ -194,7 +194,6 @@ exports[`renders form when shouldShowNewPassword is false 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down Expand Up @@ -467,7 +466,6 @@ exports[`renders form when shouldShowNewPassword is true 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down Expand Up @@ -559,7 +557,6 @@ exports[`renders form when shouldShowNewPassword is true 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ exports[`CreateAccount renders CreateAccount component 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down Expand Up @@ -530,7 +529,6 @@ exports[`CreateAccount renders errors 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ exports[`renders the correct tree 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down Expand Up @@ -391,7 +390,6 @@ exports[`should not render cancel button if isCancelButtonHidden is true 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ exports[`should render formErrors 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down Expand Up @@ -264,7 +263,6 @@ exports[`should render properly 1`] = `
disabled={false}
onClick={[Function]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ exports[`should render show button if visible is false 1`] = `
disabled={false}
onClick={[MockFunction]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down Expand Up @@ -162,7 +161,6 @@ exports[`should render toggle button if isToggleButtonHidden is false 1`] = `
disabled={false}
onClick={[MockFunction]}
onDragStart={[Function]}
onKey={true}
onKeyDown={[Function]}
onMouseDown={[Function]}
onMouseEnter={[Function]}
Expand Down
1 change: 0 additions & 1 deletion packages/venia-ui/lib/components/Password/password.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ const Password = props => {
className={classes.passwordButton}
onClick={togglePasswordVisibility}
onKeyDown={handleKeypress}
onKey
type="button"
>
{visible ? (
Expand Down
Loading