style: fix biome lint errors

This commit is contained in:
Joao Lisboa
2025-12-02 17:11:45 -03:00
committed by Peter Steinberger
parent 499a3e3227
commit d8b1a38350
3 changed files with 22 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ export async function sendMessageWeb(
const mimetype =
media.contentType === "audio/ogg"
? "audio/ogg; codecs=opus"
: media.contentType ?? "application/octet-stream";
: (media.contentType ?? "application/octet-stream");
payload = { audio: media.buffer, ptt: true, mimetype };
} else if (media.kind === "video") {
const mimetype = media.contentType ?? "application/octet-stream";