fix: correctly select light/dark mode based on system colortheme

This commit is contained in:
garethgeorge
2024-01-04 18:31:29 -08:00
parent f73d1d514b
commit de9282a924
+1 -1
View File
@@ -35,7 +35,7 @@ export const ActivityBar = () => {
}
});
return <span>{details.map((details, idx) => {
return <span style={{ color: "white" }}>{details.map((details, idx) => {
return <span key={idx}>{details.displayName} in progress for plan {details.op.planId} to {details.op.repoId} for {formatDuration(details.details.duration)}</span>
})}</span>
}