To quote the README:
The package react-select is optional. It is unnecessary if you're only using the hook.
However, you can see react-select listed here as a peer dependency:
This means that, whether or not we need react-select, it will still get installed despite not explicitly installing it ourselves. For my specific use-case, I'm only using the hook, and react-select is causing build errors for us.
To quote the README:
However, you can see
react-selectlisted here as a peer dependency:react-timezone-select/package.json
Line 50 in 4396e24
This means that, whether or not we need
react-select, it will still get installed despite not explicitly installing it ourselves. For my specific use-case, I'm only using the hook, andreact-selectis causing build errors for us.