Created
July 24, 2024 19:09
-
-
Save jagdishlove/164b618c78060557a282779dedaa6ecf to your computer and use it in GitHub Desktop.
Multi-select scrolls to top after selecting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please use useCallback with MenuList. That will work. | |
const MenuList = useCallback((props: any) => { | |
return ( | |
<components.MenuList {...props}>{props.children}</components.MenuList> | |
</Fragment> | |
); | |
}, []); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment