-
Notifications
You must be signed in to change notification settings - Fork 101
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Your org has enabled the Graphite merge queue for merging into masterAdd the label “merge” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
{feedback && !isLast && ( | ||
<div className={feedbackContainer({ isLast: false })}> | ||
<FeedbackButton {...feedback} variant={FeedbackButtonVariant.PREVIOUS_RESPONSE} /> | ||
</div> |
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.
This change removes feedback functionality for the last response. To preserve the original behavior, consider using:
{feedback && (
<div className={feedbackContainer({ isLast })}>
<FeedbackButton
{...feedback}
variant={isLast ? FeedbackButtonVariant.LAST_RESPONSE : FeedbackButtonVariant.PREVIOUS_RESPONSE}
/>
</div>
)}
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
…k-fix-sigh/DSN-000 merge laucnher revisions
|
Fixes or implements VF-XXX
Brief description. What is this change?
Implementation details. How do you make this change?
Setup information
Deployment Notes
Related PRs
Checklist