chore: correctly close modals and show toast after creating note from shared text
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
export type DialogWithClose = HTMLDivElement & { close: () => void }
|
||||
|
||||
export const requestCloseAllOpenModalsAndPopovers = () => {
|
||||
document.querySelectorAll('[role="dialog"], [data-popover]').forEach((element) => {
|
||||
// We add the close method to dialog & popovers to allow us to
|
||||
// close them from anywhere in the app.
|
||||
if ('close' in element && typeof element.close === 'function') {
|
||||
element.close()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user