Updating status in panel to not default to uppercase (#63)

This commit is contained in:
mattherzog
2024-05-31 11:34:42 -05:00
committed by GitHub
parent c29e771771
commit 21f068691f
2 changed files with 4 additions and 4 deletions

View File

@@ -262,7 +262,7 @@ export default function Playground({
roomState === ConnectionState.Connecting ? (
<LoadingSVG diameter={16} strokeWidth={2} />
) : (
roomState
roomState.toUpperCase()
)
}
valueColor={
@@ -275,11 +275,11 @@ export default function Playground({
name="Agent connected"
value={
isAgentConnected ? (
"true"
"TRUE"
) : roomState === ConnectionState.Connected ? (
<LoadingSVG diameter={12} strokeWidth={2} />
) : (
"false"
"FALSE"
)
}
valueColor={