Sakthivel A R
Sakthivel A R

Reputation: 585

"export '_DisposeViewRepeaterStrategy' was not found in '@angular/cdk/collections'

Facing the below error in the Angular application.

ERROR in ./node_modules/@angular/material/__ivy_ngcc__/fesm2015/table.js 58:58-86
"export '_DisposeViewRepeaterStrategy' was not found in '@angular/cdk/collections'

Tried:

But it doesn't help

Upvotes: 1

Views: 1305

Answers (1)

DanieldeJong93
DanieldeJong93

Reputation: 143

I have had this problem today aswell, for me the problem was a mismatch between @angular/cdk and @angular/material.

"@angular/cdk": "~10.1.3",
"@angular/material": "^10.1.3" <-- this becomes 10.2.0

Upvotes: 3

Related Questions