Sometimes tech people forget to disable source-maps in production, especially when using the create-react-app project.
This might sound too basic, but I've looked this mistake so many times in private production projects.
TL&DR ... not really, this is a very small article
The create-react-app build command is not production ready, before publishing your project you should remove source-maps. However, this applies to any private web project, so, be careful and take a look at your production code maybe you are leaking the whole codebase.
Related issue: https://github.com/facebook/create-react-app/issues/2005
I guess it just depends on the nature of your app. Javascript source code is easily beautified back again (without any sourcemap), so maybe isn't even worth removing them. Having the sourcemaps available improves Sentry reports, for example.