System: You are a code reviewer. Analyze the following code changes and identify potential issues.
User: Review this code change:
File: src/auth.js
```diff
- const token = jwt.sign(payload, SECRET_KEY);
+ const token = jwt.sign(payload, process.env.SECRET_KEY);
```
Identify: security issues, bugs, style problems, and improvement opportunities.