Revert "Add a warning for dismissing invalid toasts"

This reverts commit 3674b6446e.
pull/21833/head
Travis Ralston 2020-06-04 13:53:09 -06:00
parent 3674b6446e
commit dc23dd637c
1 changed files with 0 additions and 5 deletions

View File

@ -68,11 +68,6 @@ export default class ToastStore extends EventEmitter {
}
dismissToast(key) {
if (!this.toasts.some(t => t.key === key)) {
console.warn(`No toast for ${key} found - cannot dismiss. Check your toastKey`);
return;
}
if (this.toasts[0] && this.toasts[0].key === key) {
this.countSeen++;
}