Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored Feb 8, 2025
1 parent d22844c commit 7b97737
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Questionnaire/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function QuestionnaireList() {
<Badge
className={
questionnaire.status === "active"
? "bg-green-200 text-green-900 hover:bg-green-300"
? "bg-green-100 text-green-800 hover:bg-green-200"
: ""
}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Questionnaire/show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export function QuestionnaireShow({ id }: QuestionnaireShowProps) {
<Badge
className={
questionnaire.status === "active"
? "bg-green-200 text-green-900 hover:bg-green-300"
? "bg-green-100 text-green-800 hover:bg-green-200"
: ""
}
>
Expand Down

0 comments on commit 7b97737

Please sign in to comment.