accessible-astro-components
accessible-astro-components copied to clipboard
Modal: Property 'closeModal' does not exist
Thanks for the useful resource! I noticed that astro check
throws the following error:
src/components/Modal.astro:216:10 - error ts(2339): Property 'closeModal' does not exist on type 'Window & typeof globalThis'.
216 window.closeModal = closeModal
~~~~~~~~~~
I believe it should simply be window.close
. See also https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement/close.