import { useStore } from '@nanostores/react' import React from 'react' import { pageStore } from '../../stores/router' import { H1 } from '../components/H1' export const PhishingDetected = () => { const page = useStore(pageStore) const { param: website = '' } = page || {} const decodedWebsite = decodeURIComponent(website) return (

Phishing detected

You have been redirected because the extension believes that this website could compromise the security of your accounts and your tokens:

{decodedWebsite}

Note that this website was reported on a community-driven, curated list. It might be incomplete or inaccurate. If you think that this website was flagged incorrectly,{' '} please open an issue by clicking here

) }