Skip to content

Commit

Permalink
Merge pull request #823 from pangolindex/feat/new-version-modal
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
poyrazovic authored Nov 1, 2024
2 parents 16375b6 + 5295e89 commit 9dc529b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/NewVersionModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const NewVersionModal = () => {
setBetaModal(!betaModal)
}

const goToBeta = () => window.open('https://beta.pangolin.exchange/', '_blank')
const goToBeta = () => window.open('https://beta.pangolin.exchange/', '_blank', 'noopener')

return (
<Modal isOpen={betaModal} onDismiss={toggleModal}>
Expand Down
2 changes: 1 addition & 1 deletion src/layout/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default function Header({ activeMobileMenu, handleMobileMenu }: Props) {
<SuperFarmButton
variant="primary"
onClick={() => {
window.open('https://beta.pangolin.exchange/#/superfarms', '_blank')
window.open('https://beta.pangolin.exchange/superfarmsv2', '_blank', 'noopener')
}}
>
SuperFarms ⭐
Expand Down

0 comments on commit 9dc529b

Please sign in to comment.