From 6fbede46345a1cf3df6ddd11cb16b967ab438834 Mon Sep 17 00:00:00 2001 From: Ted Ian Osias Date: Wed, 3 Sep 2025 22:14:18 +0800 Subject: [PATCH 1/2] fix(proposal-card): update explorer url SYSHUB001v3-ER05 --- src/components/governance/ProposalCardInfo.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/governance/ProposalCardInfo.jsx b/src/components/governance/ProposalCardInfo.jsx index 29d8ef6a..291b4cab 100644 --- a/src/components/governance/ProposalCardInfo.jsx +++ b/src/components/governance/ProposalCardInfo.jsx @@ -26,6 +26,10 @@ function ProposalCardInfo({ month_remaining, payment_type, }) { + const isMainnet = process.env.REACT_APP_CHAIN_NETWORK === "main"; + const blockbookBase = isMainnet + ? "https://blockbook.syscoin.org" + : "https://blockbook-dev.syscoin.org"; /** * Function that returns an html with the link or not of the proposal @@ -79,7 +83,7 @@ function ProposalCardInfo({

Collateral hash:{" "} From ad568d2142fac82798d54a76b7487ed44d2ca846 Mon Sep 17 00:00:00 2001 From: Ted Ian Osias Date: Wed, 3 Sep 2025 22:18:08 +0800 Subject: [PATCH 2/2] chore(ci): add test build on PR --- .github/workflows/build-image.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index 89b65354..20e83693 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -4,6 +4,9 @@ on: push: branches: - master + pull_request: + branches: + - master permissions: contents: read