Skip to content

Commit

Permalink
fix: potentially unsafe external url
Browse files Browse the repository at this point in the history
  • Loading branch information
justynoh committed Apr 3, 2024
1 parent f775518 commit 4ccf17e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/views/templates/MrfWorkflowEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ export const MrfWorkflowEmail = ({
<Row style={{ paddingTop: '16px' }}>
<Column>
<Container style={buttonContainerStyle}>
<a href={responseUrl} target="_blank" style={buttonInnerStyle}>
<a
href={responseUrl}
target="_blank"
rel="noopener noreferrer"
style={buttonInnerStyle}
>
Click to review and complete
</a>
</Container>
Expand Down

0 comments on commit 4ccf17e

Please sign in to comment.