React Lazy Loading Weird Behavior

Any ideas why this is not an issue when I am not lazy loading the component?

All I really changed was how the parent component was loaded:

BEFORE: import Design from '../Design';
AFTER: const Design = lazy(() => import('../Design'));