samdenty / console-feed

Captures console.log's into a React Component 🔥
https://stackblitz.com/~/github.com/samdenty/console-feed
MIT License
649 stars 106 forks source link

logs not updating #127

Open jothikannan89 opened 10 months ago

jothikannan89 commented 10 months ago

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]);