Fix text color. Closes #2447

This commit is contained in:
Gabe Kangas 2022-12-15 22:00:15 -08:00
parent 2d4e53ce4b
commit b75ef37952
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -240,7 +240,7 @@ const StreamHealth = () => {
'Your viewers may be consuming your video slower than required. This may be due to slow networks or your latency configuration. You need to decrease the amount of time viewers are taking to consume your video. Consider adding a lower quality with a lower bitrate or experiment with increasing the latency buffer setting.';
}
const errorStatColor = recentErrorCount > 0 ? '#B63FFF' : '#FFFFFF';
const errorStatColor = recentErrorCount > 0 ? '#B63FFF' : 'unset';
const statStyle = {
display: 'flex',
alignItems: 'center',