Alert: An unexpected synthetic listener @state.start was detected. To resolve this issue, ensure that:
- Either
BrowserAnimationsModule
orNoopAnimationsModule
are included in your application.
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; imports: [ BrowserAnimationsModule ], Hey there, I encountered this error message in my console despite importing BrowserAnimationsModule in app.module.ts. Can someone help me troubleshoot this problem?