Angular - Signals
After migrating from observable to signal, this code throws an error:
What is the issue?
const data = signal(null); this.data$.subscribe(value => data.set(value));
What is the issue?
