bug fixes

This commit is contained in:
Dallas Groot 2026-04-10 00:02:19 -07:00
parent b1101a6ea3
commit 3399d02d53

View file

@ -1173,18 +1173,6 @@ struct NowPlayingView: View {
}
}
}
// MARK: - Recording
private func toggleRecording() {
if isRecording {
_ = radioBuffer.stopRecording()
isRecording = false
} else {
radioBuffer.startRecording()
isRecording = true
}
}
}
/// AirPlay route picker wrapped in a container UIView to prevent _UIReparentingView warnings.