diff --git a/src/state/MicrophoneLevel.ts b/src/state/MicrophoneLevel.ts index f34fcca2b..70f61790b 100644 --- a/src/state/MicrophoneLevel.ts +++ b/src/state/MicrophoneLevel.ts @@ -13,7 +13,7 @@ import { type Behavior } from "./Behavior"; /** What the microphone picks up, or why it can't be read. */ export type MicrophoneState = // A Behavior, so a changing level can be drawn without re-rendering. - | { type: "level"; level: Behavior } + | { type: "level"; level$: Behavior } | { type: "permission-denied" } | { type: "no-device" };