fix: correct malformed JSX props in RecordingControls

The toggleMicrophone and resumeRecording props were on the same line
as microphoneEnabled, causing the recording HUD buttons to break.
This commit is contained in:
webadderall
2026-04-20 23:02:52 +10:00
parent 735ebe189b
commit da66e25faf
+3 -1
View File
@@ -328,7 +328,9 @@ export function LaunchWindow() {
paused={paused}
elapsed={elapsed}
formatTime={formatTime}
microphoneEnabled={microphoneEnabled} toggleMicrophone={toggleMicrophone} resumeRecording={resumeRecording}
microphoneEnabled={microphoneEnabled}
toggleMicrophone={toggleMicrophone}
resumeRecording={resumeRecording}
pauseRecording={pauseRecording}
toggleRecording={toggleRecording}
cancelRecording={cancelRecording}