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
Describe the problem
I have a Popover that opens up and informs the user about validation status when a user types in a TextInput.
Since the Popover is tied to the TextInput, I don't want it to steal focus when opened, so I set withFocusTrap={false}.
However, even then, when the popover is closed, it returns focus to the TextInput which is not desired since I want to control the TextInput onBlur onFocus etc myself.
Perhaps a possible fix might be to update the returnFocusOnDeactivate prop passed to the Popover FocusTrap, so that instead of true it could be set to withFocusTrapProp?