-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
fix(replay): Update text to reflect replay count #75023
Conversation
Bundle ReportChanges will increase total bundle size by 13.47kB ⬆️
|
@@ -270,9 +270,8 @@ function GroupReplaysTable({ | |||
<ReplayCountHeader> | |||
<IconUser size="sm" /> | |||
{t( | |||
'Replay captured %s experiencing this issue across %s.', | |||
tn('%s user', '%s users', replayCount ?? 0), | |||
tn('%s event', '%s events', group.count) |
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.
why did we get rid of this line?
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.
I wasn't sure how to word it properly with the events count, updated to bring it back, lmk if you have any suggestions
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.
with @jas-kas 's suggestion i think it sounds fine!
Co-authored-by: Jasmin <[email protected]>
Co-authored-by: Jasmin <[email protected]>
We are getting a replay count instead of a user count, so updating the text to reflect that.
Fixes #74751