Unset foreground in default themes (#9765)

This commit is contained in:
Miguel Solorio
2025-09-25 15:12:10 -07:00
committed by GitHub
parent 70bc2933cc
commit 18e5113754
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -28,5 +28,5 @@ export const getStatusColor = (
if (value >= thresholds.yellow) {
return theme.status.warning;
}
return options.defaultColor || theme.status.error;
return options.defaultColor ?? theme.status.error;
};