If you use `flash('hello', { class: 'error' })` and the use just `flash('hello')` the 'error' class is still there. It has to be reset: ```js // Use 'error' dynamically here? el.classList.remove('error') ```