You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we render all of the content inside of select menus into the DOM tree even when modals aren't open (because we rely on the details element to show/hide content.
This is causing performance issues in applications where there are a large number of modals on the page at any give time, each one with a decent amount of content in them.
We should explore only rendering the modal content if the modal is open. This might lead to needing to detach the SelectMenu from relying on native details behavior