From 4c0a741308cbe63ed1ccfc6b878540daaa291ca9 Mon Sep 17 00:00:00 2001 From: JayMishra-github Date: Mon, 16 Feb 2026 10:37:50 -0800 Subject: [PATCH] fix: apply oxfmt 0.32.0 formatting (match CI version) Co-Authored-By: Claude Opus 4.6 --- extensions/voice-call/src/webhook.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/voice-call/src/webhook.ts b/extensions/voice-call/src/webhook.ts index 7ceb0bdd0a..1e1bea2cbd 100644 --- a/extensions/voice-call/src/webhook.ts +++ b/extensions/voice-call/src/webhook.ts @@ -10,11 +10,11 @@ import type { VoiceCallConfig } from "./config.js"; import type { CoreConfig } from "./core-bridge.js"; import type { CallManager } from "./manager.js"; import type { MediaStreamConfig } from "./media-stream.js"; -import { MediaStreamHandler } from "./media-stream.js"; import type { VoiceCallProvider } from "./providers/base.js"; -import { OpenAIRealtimeSTTProvider } from "./providers/stt-openai-realtime.js"; import type { TwilioProvider } from "./providers/twilio.js"; import type { NormalizedEvent, WebhookContext } from "./types.js"; +import { MediaStreamHandler } from "./media-stream.js"; +import { OpenAIRealtimeSTTProvider } from "./providers/stt-openai-realtime.js"; const MAX_WEBHOOK_BODY_BYTES = 1024 * 1024;