Fixed timeout bug

pull/5370/head
ioedeveloper 4 years ago
parent 3be44ed6bb
commit cc84bb10f8
  1. 4
      libs/remix-ui/toaster/src/lib/toaster.tsx

@ -59,8 +59,8 @@ export const Toaster = (props: ToasterProps) => {
if (state.timeOutId) {
clearTimeout(state.timeOutId)
}
setState(() => {
return { message: '', hide: true, hiding: false, timeOut: 0, timeOutId: null, showModal: false }
setState(prevState => {
return { ...prevState, message: '', hide: true, hiding: false, timeOutId: null, showModal: false }
})
}

Loading…
Cancel
Save