logs not updating
Opened this issue · 0 comments
jothikannan89 commented
I want to update the logs with useEffect dependencies. But with the dependencies updated, nothing is updating on the logs
useEffect(() => {
const hookedConsole = Hook(
iframeRef.current.contentWindow.console,
(log) => setLogs((currLogs) => [...currLogs, log]),
false
);
return () => Unhook(hookedConsole);
}, [updated]);