mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-26 15:55:35 +00:00
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:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user