Skip to content

Commit

Permalink
feat: Feedback link as button (#2764)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjon3s authored Feb 7, 2024
1 parent 45117e9 commit 9e47d10
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,13 @@ export default function PhaseBanner(props: Props): FCReturn {
mt="0.2em"
>
This is a new service. Your{" "}
<Link onClick={() => props.handleFeedbackClick()}>feedback</Link>{" "}
<Link
component={"button"}
sx={{ verticalAlign: "top" }}
onClick={() => props.handleFeedbackClick()}
>
feedback
</Link>{" "}
will help us improve it.
</Typography>
</PhaseWrap>
Expand Down

0 comments on commit 9e47d10

Please sign in to comment.