fix my highlighting

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2026-04-13 19:10:23 +03:00
parent 7cf8ebcf0b
commit bbf278468c
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",
"private": true,
"version": "0.7.16",
"version": "0.7.17",
"type": "module",
"scripts": {
"dev": "vite",

View File

@ -41,7 +41,7 @@ export const useProposalVoteOf = (chainId, proposalId, who) => {
address: GHOST_GOVERNANCE_ADDRESSES[chainId],
functionName: "voteOf",
args: [proposalId, who],
scopeKey: `voteOf-${chainId}-${proposalId?.toString()}-${who}`,
scopeKey: `voteOf-${chainId}-${proposalId ? proposalId.toString() : "undefined"}-${who}`,
chainId: chainId,
});
const voteOf = data ? BigInt(data) : 0n;