Skip to content

Commit

Permalink
Tiny fix
Browse files Browse the repository at this point in the history
brickpop committed Aug 22, 2024
1 parent 000e8fa commit ff110a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ const ProposalHeader: React.FC<ProposalHeaderProps> = ({ proposalIdx, proposal }
<div className="flex items-center gap-x-2">
<AvatarIcon icon={IconType.APP_MEMBERS} size="sm" variant="primary" />
<div className="flex gap-x-1 text-base leading-tight ">
<If condition={status == ProposalStatus.VETOED}>
<If condition={proposalStatus == ProposalStatus.VETOED}>
<Then>
<span className="text-neutral-500">The proposal has been defeated</span>
</Then>

0 comments on commit ff110a3

Please sign in to comment.