We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc336f commit 55eb385Copy full SHA for 55eb385
web/src/pages/Cases/CaseDetails/Voting/VotingHistory.tsx
@@ -108,7 +108,7 @@ const VotingHistory: React.FC<{ arbitrable?: string }> = ({ arbitrable }) => {
108
items={
109
localRounds.at(currentTab)?.votes.map((vote) => ({
110
title: shortenAddress(vote.juror.id),
111
- Icon: React.useMemo(() => () => <Jazzicon seed={jsNumberForAddress(vote.juror.id)} />, [vote.juror.id]),
+ Icon: <Jazzicon diameter={24} seed={jsNumberForAddress(vote.juror.id)} />,
112
body: (
113
<AccordionContent
114
choice={vote.choice === 0 ? "Refuse to arbitrate" : disputeTemplate.answers[vote.choice - 1].title}
0 commit comments