Skip to content
Fetching contributors…
Cannot retrieve contributors at this time
10 lines (9 sloc) 263 Bytes
export default function toastSaga(err$, toast) {
err$
.doOnNext(() => toast({
type: 'error',
title: 'Oops, something went wrong',
message: `Something went wrong, please try again later`
}))
.subscribe(err => console.error(err));
}
Something went wrong with that request. Please try again.