Grant Clark
Results
2
comments of
Grant Clark
I had this issue as well. Try passing the `.js.map` file instead: ``` source-map resolve main.c15d80c6dc61f528.js.map 1 23044 ```
This worked for me on the `DialogContent` component: ```tsx { // don't dismiss dialog when clicking inside the toast if ( e.target instanceof Element && e.target.closest("[data-sonner-toast]") ) { e.preventDefault(); }...