diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx index d4df2889d..9b77515f9 100644 --- a/ui/component/publishForm/view.jsx +++ b/ui/component/publishForm/view.jsx @@ -569,6 +569,13 @@ function PublishForm(props: Props) { setShowSchedulingOptions(isLivestreamMode && fileSelectSource === SOURCE_NONE); }, [isLivestreamMode, fileSelectSource]); + // Reset any set release time if switching to live stream mode. + useEffect(() => { + if (mode === PUBLISH_MODES.LIVESTREAM) { + updatePublishForm({ releaseTimeEdited: undefined }); + } + }, [mode, updatePublishForm]); + if (publishing) { return (