Read a bit about .env files, if they key is hardcoded in the frontend move it to a .env file that is added to .gitignore and not pushed to the repository.
Figure out how to read key values from .env, good luck :)
To put it in your environment variables, easiest is just to export it to your shell session.
So you'd write something like this in your terminal where you are starting your react application:
```
export REACT_APP_SECRET_KEY=xxx
```
This expects you have bash though, simplest is to just download Git, you get Git Bash along with it's installation.
So for this, I am not the developer of the React App. Just testing the app for issues. I understand the fix for them is to move it to env variables, but usually when we find a key, we show it being used as a proof of concept to show how bad the issue is. I just don't know how to use the React App Secret Key.