Skip to content

Commit

Permalink
fix: server status light mode dot
Browse files Browse the repository at this point in the history
  • Loading branch information
patricio0312rev committed Feb 7, 2025
1 parent a9001c4 commit 40772b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Icon } from "@/app/components/Icon";
const StatusDot = ({ status }: { status: ServerHealthStatus }) => {
const dotColorClass = () => {
if (status === ServerHealthStatus.Healthy) {
return "bg-theme-success-700 dark:bg-theme-success-500";
return "bg-theme-success-600 dark:bg-theme-success-500";
}

if (status === ServerHealthStatus.Downgraded) {
Expand Down

0 comments on commit 40772b3

Please sign in to comment.