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
  • Loading branch information
Fran McDade authored and NoopDog committed Aug 15, 2023
1 parent 1bab9d2 commit a606a6f
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 a606a6f

Please sign in to comment.