Skip to content

Commit

Permalink
fix: add rel=noopener noreferrer to the "export to terra" link (#345) (
Browse files Browse the repository at this point in the history
…#346)

Co-authored-by: Fran McDade <[email protected]>
  • Loading branch information
frano-m and Fran McDade authored Aug 15, 2023
1 parent 1bab9d2 commit f1055ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const ExportToTerraReady = ({
exportURL,
}: ExportToTerraReadyProps): JSX.Element => {
const onOpenTerra = (): void => {
window.open(exportURL, ANCHOR_TARGET.BLANK, "noopener");
window.open(exportURL, ANCHOR_TARGET.BLANK, "noopener noreferrer");
};
return (
<FluidPaper>
Expand Down

0 comments on commit f1055ad

Please sign in to comment.