From 1ab1ddfe8c9dff9bcbd9e4509fc5e80fa63148c5 Mon Sep 17 00:00:00 2001 From: fkwp Date: Thu, 24 Sep 2026 11:22:40 +0200 Subject: [PATCH] Apply suggestion from @robintown Co-authored-by: Robin --- src/state/MicrophoneLevel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" };