Skip to content

Commit

Permalink
Merge pull request #171 from scientist-softserv/239-requests-page
Browse files Browse the repository at this point in the history
add data-cy attribute to linkedbutton
  • Loading branch information
summer-cook authored Mar 1, 2023
2 parents 6b477a7 + 20a7205 commit bb2ce0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compounds/LinkedButton/LinkedButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ButtonLinkWrapper = React.forwardRef(({ ...props }, ref) => {
const { addClass, buttonProps, href } = props

return (
<a href={href} ref={ref} className={addClass}>
<a href={href} ref={ref} className={addClass} data-cy='linked-button'>
<Button {...buttonProps} />
</a>
)
Expand Down

0 comments on commit bb2ce0a

Please sign in to comment.