From 86291f933ba29bf8f0fdcc031c49e8efd1234470 Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Sun, 15 Mar 2026 12:20:52 +0300 Subject: [PATCH] fix representation of clapped percentage Signed-off-by: Uncle Fatso --- package.json | 2 +- src/containers/Bridge/Bridge.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 903eed6..699b5d3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ghost-dao-interface", "private": true, - "version": "0.6.2", + "version": "0.6.3", "type": "module", "scripts": { "dev": "vite", diff --git a/src/containers/Bridge/Bridge.jsx b/src/containers/Bridge/Bridge.jsx index 33f194c..4b00d2c 100644 --- a/src/containers/Bridge/Bridge.jsx +++ b/src/containers/Bridge/Bridge.jsx @@ -126,7 +126,7 @@ const Bridge = ({ chainId, address, config, connect }) => { const applauseThreshold = useApplauseThreshold(); const evmNetwork = useEvmNetwork({ evmChainId: chainId }); const totalStakedAmount = useErasTotalStake({ - eraIndex: eraIndex?.index ?? 0, + epochIndex: eraIndex?.index ?? 0, }); const authorities = useAuthorities({ currentSession: watchTransaction?.sessionIndex ?? currentSession