Angular Material 2 Snackbar Error -


i have simple snackbar

this.snackbar.open(this.nextrun, null, {   duration: 6000 }) 

when dismisses objectunsubscribederror because snackbar.open() exposes observable action though i'm passing in null argument. how avoid unsubscribed object error?


Comments