First off, thanks for creating this library! We were able to replace a home-grown alert handling solution that had a bunch of problems with react-hot-toast's headless mode very easily, and it was a very seamless transition.
The only issue we've run into is that the goober dependency seems to be included in our app's bundle, which we only noticed because it broke our app in IE11 (this was discussed in #58). We managed to work around that issue by letting Babel compile the dependency, but of course the bigger issue is that it shouldn't have been included in the first place, as we only use the toast function and the useToaster hook from this library, and handle the component rendering ourselves.
First off, thanks for creating this library! We were able to replace a home-grown alert handling solution that had a bunch of problems with react-hot-toast's headless mode very easily, and it was a very seamless transition.
The only issue we've run into is that the
goober
dependency seems to be included in our app's bundle, which we only noticed because it broke our app in IE11 (this was discussed in #58). We managed to work around that issue by letting Babel compile the dependency, but of course the bigger issue is that it shouldn't have been included in the first place, as we only use thetoast
function and theuseToaster
hook from this library, and handle the component rendering ourselves.