Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
khanti42 committed Nov 21, 2024
1 parent 071083c commit e33fb8e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ import { ConnectButton } from '../ConnectModal/ConnectModal.style';
export const MinVersionModalView = () => {
const { metaMaskUpgradeRequired } = useHasMetamask();
const handleUpdateMetaMask = () => {
const newWindow = window.open('https://metamask.io', '_blank', 'noopener,noreferrer');
const newWindow = window.open(
'https://metamask.io',
'_blank',
'noopener,noreferrer',
);
if (newWindow) newWindow.focus();
};
return (
Expand Down

0 comments on commit e33fb8e

Please sign in to comment.