chore: close currently open modals/popovers when sharing text into sn

This commit is contained in:
Aman Harwara
2023-07-12 21:03:06 +05:30
parent a9378ab5d7
commit 6f18a73d94
4 changed files with 39 additions and 4 deletions

View File

@@ -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()
}
})
}