You're loading JavaScript that isn't being used.
How to fix:
Implement code splitting: const Component = lazy(() => import('./Component'))
Remove unused dependencies from package.json
Use tree-shaking (most bundlers do this automatically)
Audit your bundle with tools like webpack-bundle-analyzer