diff --git a/apps/poll/src/ChoiceItem.tsx b/apps/poll/src/ChoiceItem.tsx index ab89968c..c55ecfe8 100644 --- a/apps/poll/src/ChoiceItem.tsx +++ b/apps/poll/src/ChoiceItem.tsx @@ -22,7 +22,9 @@ export const ChoiceItem = ({ }: ChoiceItemType) => ( - {title} + + {title} + {alreadyVoted || completed ? ( @@ -32,6 +34,7 @@ export const ChoiceItem = ({ ) : ( handleClickOnChoice({ count: votes, value: title, id })} justifyContent="space-between" > diff --git a/apps/poll/src/Choices.tsx b/apps/poll/src/Choices.tsx index 2ab3a189..6ee50407 100644 --- a/apps/poll/src/Choices.tsx +++ b/apps/poll/src/Choices.tsx @@ -154,7 +154,7 @@ export const Choices = () => { {isLocked ? ( - Connect your wallet with Human Divergence NFT to vote + Connect your wallet ) : ( diff --git a/apps/poll/src/Layout.tsx b/apps/poll/src/Layout.tsx index becd9c0e..72634322 100644 --- a/apps/poll/src/Layout.tsx +++ b/apps/poll/src/Layout.tsx @@ -26,7 +26,7 @@ function Layout() { ( {completed && ( - Completed + + Completed + )}