Commit 73573b9
authored
fix(init,feedback): default to tracing only in feature select and attach user email to feedback (#688)
## Summary
- **Init wizard**: The multi-select feature prompt now pre-selects only
**Performance Monitoring (Tracing)** instead of all features. `--yes`
mode continues to select all features.
- **Feedback command**: Passes the stored user email and name to
`Sentry.captureFeedback()` so feedback events display the user's
identity in the Sentry UI instead of "Anonymous User".
## Changes
| File | Change |
|------|--------|
| `src/lib/init/interactive.ts` | `initialValues: optional` →
`initialValues: optional.filter(f => f === "performanceMonitoring")` |
| `src/commands/cli/feedback.ts` | Read stored user info from DB and
pass `email`/`name` to `captureFeedback()` |1 parent 7994bba commit 73573b9
2 files changed
+8
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
67 | 73 | | |
68 | 74 | | |
69 | 75 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
126 | | - | |
| 126 | + | |
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| |||
0 commit comments