-
Notifications
You must be signed in to change notification settings - Fork 232
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: do not spread key
on render props
#300
base: master
Are you sure you want to change the base?
Conversation
renderThumb: props => <div {...props} />, | ||
renderTrack: props => <div {...props} />, | ||
renderMark: props => <span {...props} />, | ||
renderThumb: ({ key, ...props }) => <div key={key} {...props} />, |
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.
good catch👍
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 fixed my issue! thanks!
Try with passing the |
@kris-ellery Is there any update on this? |
Is this fix still working? @m1nsuplee Does your review count as an approval? |
fix is still working |
Does that mean any of you has the power to approve and/or merge this PR? If not, should the appropriate person be notified? |
yes they should be notified |
Should fix #288