Skip to content

Commit

Permalink
Merge pull request #119 from MinaFoundation/feature/comments-phase-fix
Browse files Browse the repository at this point in the history
bug: change outline to null & bump to 0.0.40
  • Loading branch information
iluxonchik authored Jan 27, 2025
2 parents 096bc66 + c9db599 commit 8692f0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pgt-web-app",
"version": "0.1.39",
"version": "0.1.40",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProposalComments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ function CommentCard({ comment }: { comment: ProposalComment & { category: 'revi
<div className="flex flex-col items-end gap-2">
{comment.recommendation !== undefined && (
<Badge
variant={comment.recommendation ? 'success' : 'destructive'}
variant={comment.recommendation ? null : 'destructive'}
className="transition-all duration-200 hover:opacity-90"
>
{comment.recommendation
Expand Down

0 comments on commit 8692f0c

Please sign in to comment.