I'm getting double logs in my app and not sure what that second log is. I've minimized everything in this component just to try and understand why it is doubled up but I can't understand. It doesn't look like it actually logs twice though like what is this source VM236
? When it's only one log it's not that big of a deal but when I have more it really starts cluttering things up.
This is the component (really nothing there:
import { HomePresentational } from "../presentational";
export const HomeContainer = () => {
console.log("Just a check log");
return <HomePresentational itineraries={[]} />;
};
And this is what I'm seeing