ensure test is invalidated if stream is changed

This commit is contained in:
Josh Hawkins 2025-10-12 18:21:23 -05:00
parent 59b7dea971
commit 71e0ead490

View File

@ -284,7 +284,10 @@ export default function Step2StreamConfig({
<Input
value={stream.url}
onChange={(e) =>
updateStream(stream.id, { url: e.target.value })
updateStream(stream.id, {
url: e.target.value,
testResult: undefined,
})
}
className="h-8 flex-1"
placeholder={t("cameraWizard.step2.streamUrlPlaceholder")}