chore: close currently open modals/popovers when sharing text into sn
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export const requestCloseAllOpenModalsAndPopovers = () => {
|
||||
document.querySelectorAll('[role="dialog"], [data-popover]').forEach((element) => {
|
||||
if ('close' in element && typeof element.close === 'function') {
|
||||
element.close()
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user