While attempting to listen for value changes on a reactive form, I ran into the following error:
This expression is not callable. Type 'Observable<string | null>' has no call signatures.
searchWord = this.fb.group({
word: ['']
});
ngOnInit(): void {
this.searchWord.get('word')!.valueChanges()
}