From 31c3df91b455293e931fffdd66f96c1acb07f269 Mon Sep 17 00:00:00 2001 From: stuyk Date: Fri, 6 Dec 2024 12:50:08 -0700 Subject: [PATCH] fix: temporarily disable discussions link --- src/components/proposals/ProposalWrapper.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/proposals/ProposalWrapper.vue b/src/components/proposals/ProposalWrapper.vue index f351443..f977764 100644 --- a/src/components/proposals/ProposalWrapper.vue +++ b/src/components/proposals/ProposalWrapper.vue @@ -211,8 +211,8 @@ const tabOptions = reactive([ { title: "Description" }, { title: "Info" }, { title: "Voters" }, - { title: "Discussions", link: "https://commonwealth.im/govgen/proposal/" + props.proposalId }, - // { title: "Links", link: "https://commonwealth.im/govgen/proposal/" + props.proposalId }, + // { title: "Discussions", link: "https://commonwealth.im/atomone/proposal/" + props.proposalId }, + // { title: "Links", link: "https://commonwealth.im/atomone/proposal/" + props.proposalId }, ]); const breakdownType = ref<("validators" | "voters") | null>(null);