From 81520293f4682ef41eabb559ef357f7402e00ad3 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sat, 13 Sep 2025 17:02:40 -0500 Subject: [PATCH] Fix bug where a channel created could use streams from another channel. The form wasn't being fully cleared. --- frontend/src/components/forms/Channel.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/forms/Channel.jsx b/frontend/src/components/forms/Channel.jsx index 574c5d3a..ae466a57 100644 --- a/frontend/src/components/forms/Channel.jsx +++ b/frontend/src/components/forms/Channel.jsx @@ -242,6 +242,7 @@ const ChannelForm = ({ channel = null, isOpen, onClose }) => { formik.resetForm(); setTvgFilter(''); setLogoFilter(''); + setChannelStreams([]); // Ensure streams are cleared when adding a new channel } }, [channel, tvgsById, channelGroups]);