diff --git a/src/broadcast/rtc_streamer.ts b/src/broadcast/rtc_streamer.ts index 3ecc583..4dcdbd6 100644 --- a/src/broadcast/rtc_streamer.ts +++ b/src/broadcast/rtc_streamer.ts @@ -142,7 +142,7 @@ export class WebRTCStreamer extends Streamer { createPeerConnection(iceServers: RTCIceServer[]) { this.pc = new RTCPeerConnection({ - iceServers + iceServers, }); this.pc.oniceconnectionstatechange = async (e) => { if (!this.pc) { diff --git a/src/navbar/index.tsx b/src/navbar/index.tsx index b74cef4..2c71c97 100644 --- a/src/navbar/index.tsx +++ b/src/navbar/index.tsx @@ -18,7 +18,7 @@ import { MYRADIO_NON_API_BASE } from "../api"; import "./navbar.scss"; import { closeAlert } from "./state"; import { ConnectionStateEnum } from "../broadcast/streamer"; -import {VUMeter} from "../optionsMenu/helpers/VUMeter"; +import { VUMeter } from "../optionsMenu/helpers/VUMeter"; function nicifyConnectionState(state: ConnectionStateEnum): string { switch (state) { diff --git a/src/optionsMenu/MicTab.tsx b/src/optionsMenu/MicTab.tsx index 8f6b120..65ba338 100644 --- a/src/optionsMenu/MicTab.tsx +++ b/src/optionsMenu/MicTab.tsx @@ -71,7 +71,10 @@ export function MicTab() { return ( <>

Mic Selection

-

Click the "Find Microphones" button, then choose the microphone you want from the dropdown.

+

+ Click the "Find Microphones" button, then choose the microphone + you want from the dropdown. +