1
0
mirror of https://github.com/desktop/desktop synced 2024-07-05 00:58:57 +00:00

Fix "commented your pr" to "commented on your pr"

This commit is contained in:
tidy-dev 2024-03-08 20:04:53 -05:00
parent 78fa283e35
commit 04e95323fb
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ export class NotificationsStore {
return
}
const title = `@${comment.user.login} commented your pull request`
const title = `@${comment.user.login} commented on your pull request`
const body = `${pullRequest.title} #${
pullRequest.pullRequestNumber
}\n${truncateWithEllipsis(comment.body, 50)}`

View File

@ -75,7 +75,7 @@ export class PullRequestComment extends React.Component<
pullRequest={pullRequest}
emoji={emoji}
eventDate={new Date(comment.created_at)}
eventVerb="commented"
eventVerb="commented on"
eventIconSymbol={icon.symbol}
eventIconClass={icon.className}
externalURL={comment.html_url}