set default quorum higher

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2026-02-18 17:27:48 +03:00
parent 203d483a92
commit 063a9af321
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "ghost-dao-interface", "name": "ghost-dao-interface",
"private": true, "private": true,
"version": "0.5.16", "version": "0.5.17",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -134,7 +134,7 @@ const ProposalDetails = ({ chainId, address, connect, config }) => {
const denominator = totalVotes._value + bias; const denominator = totalVotes._value + bias;
if (denominator === 0n) { if (denominator === 0n) {
return 10; return 80;
} }
return Number(totalVotes?._value / denominator) + 1; return Number(totalVotes?._value / denominator) + 1;
}, [againstVotes, forVotes, totalVotes]); }, [againstVotes, forVotes, totalVotes]);