From 5939b6bc41e4da97a628ea6a9b4cce5528028958 Mon Sep 17 00:00:00 2001 From: 0xExp-po <xtinc.exp@gmail.com> Date: Fri, 15 Nov 2024 05:13:12 +0900 Subject: [PATCH] fix: change the proposal button click link --- dapp/src/components/page/project/ProjectInfo.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dapp/src/components/page/project/ProjectInfo.astro b/dapp/src/components/page/project/ProjectInfo.astro index b4feb62..9d4ae9b 100644 --- a/dapp/src/components/page/project/ProjectInfo.astro +++ b/dapp/src/components/page/project/ProjectInfo.astro @@ -901,7 +901,7 @@ import DonateModal from "./DonateModal.astro"; proposalsButton.addEventListener("click", () => { if (projectInfo) { const name = projectInfo.name; - window.location.href = `/proposal?name=${name}`; + window.location.href = `/governance?name=${name}`; } }); }