Jakob Eriksson

Results 2 comments of Jakob Eriksson

const searchTerm = ref("") new Observable(obs => watchEffect(() => obs.next(searchTerm))) .pipe( map(s => s.value), debounceTime(180), distinctUntilChanged(), ) .subscribe() use watcheffect on any ref

I had exact this error when i forgot to update one of the libraries to 2.0.2, namely the `dialect("app.cash.sqldelight:sqlite-3-35-dialect:2.0.2")`