Fix useEffect dependency in PlaygroundPage component

This commit is contained in:
anovazzi1 2024-04-26 17:33:56 -03:00
commit c5b9419e52

View file

@ -35,7 +35,7 @@ export default function PlaygroundPage() {
setCurrentFlow(flow);
});
}
}, [id]);
}, []);
useEffect(() => {
if (currentFlow) {