diff --git a/src/pages/gov/ProposalDescription.tsx b/src/pages/gov/ProposalDescription.tsx index 3d9b32c8c..7ff0edff5 100644 --- a/src/pages/gov/ProposalDescription.tsx +++ b/src/pages/gov/ProposalDescription.tsx @@ -118,12 +118,14 @@ const ProposalDescription = ({ proposal }: { proposal: ProposalResult }) => { export default ProposalDescription function isLinkSafe(url: string) { - console.log(url) try { const { protocol, hostname } = new URL(url) return ( protocol === "https:" && - (hostname === "terra.money" || hostname.endsWith(".terra.money")) + (hostname === "terra.money" || + hostname.endsWith(".terra.money") || + hostname === "commonwealth.im" || + hostname === "forums.terrarebels.net") ) } catch (e) { return false