diff --git a/govtool/frontend/src/components/molecules/GovernanceActionCardMyVote.tsx b/govtool/frontend/src/components/molecules/GovernanceActionCardMyVote.tsx index c1dde83ec..14fc84104 100644 --- a/govtool/frontend/src/components/molecules/GovernanceActionCardMyVote.tsx +++ b/govtool/frontend/src/components/molecules/GovernanceActionCardMyVote.tsx @@ -6,10 +6,11 @@ import { useTranslation } from "@hooks"; import { Vote } from "@models"; type Props = { + voteTxHash: string; vote: Vote; }; -export const GovernanceActionCardMyVote = ({ vote }: Props) => { +export const GovernanceActionCardMyVote = ({ voteTxHash, vote }: Props) => { const { t } = useTranslation(); return ( @@ -41,8 +42,7 @@ export const GovernanceActionCardMyVote = ({ vote }: Props) => {