Skip to content

Commit

Permalink
Add noopener,noreferrer to Remix link
Browse files Browse the repository at this point in the history
  • Loading branch information
ericglau committed Jun 26, 2023
1 parent 26cda13 commit 8a0eb1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
const { printContractVersioned } = await import('@openzeppelin/wizard/print-versioned');
const versionedCode = printContractVersioned(contract);
window.open(remixURL(versionedCode, !!opts?.upgradeable).toString(), '_blank');
window.open(remixURL(versionedCode, !!opts?.upgradeable).toString(), '_blank', 'noopener,noreferrer');
if (opts) {
await postConfig(opts, 'remix', language);
}
Expand Down

0 comments on commit 8a0eb1b

Please sign in to comment.