-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
[DO NOT MERGE] - for demo only #101198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DO NOT MERGE] - for demo only #101198
Conversation
@sentry generate-test |
@sentry review |
const sensitivityOptions: SensitivityOption[] = [ | ||
{value: 'low', label: 'Low', details: 'Post all potential issues for maximum breadth.'}, | ||
{ | ||
value: 'medium', | ||
label: 'Medium', | ||
details: 'Post likely issues for a balance of thoroughness and noise.', | ||
}, | ||
{ | ||
value: 'high', | ||
label: 'High', | ||
details: 'Post only major issues to highlight most impactful findings.', | ||
}, | ||
{ | ||
value: 'critical', | ||
label: 'Critical', | ||
details: 'Post only high-impact, high-sensitivity issues for maximum focus.', | ||
}, | ||
]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The sensitivityOptions array contains hardcoded English strings for labels and details. Consider using the t()
function for internationalization to ensure these strings can be translated. This is especially important for user-facing text that explains feature behavior.
Did we get this right? 👍 / 👎 to inform future reviews.
@suejung-sentry Looks like you don't intend to merge this. In that case, using a draft PR won't send notifications to folks for review :) |
@JonasBa, ah oops sorry is it spamming you? & don't worry I'll close any dummy PRs after the demo next week! |
Ah no worries :) I wonder if you could explicitly trigger the review workflow by tagging the agent then 🤔 Might be a good feature request for the team otherwise, as it sounds like something that you should be able to do |
Good input - thank you! The tagging ( |
[DO NOT MERGE] - for demo only