ngFor Mispelling

If ngfor is not working for you. MAKE SURE YOU ARE SPELLING IT CORRECTLY.

In my situation, i had a list like this:

<ion-item *ngfor="let recipe of recipes">

but if you noticed, I have ngfor, the correct spelling is ngFor - Gotcha!

This is how it should be:

<ion-item *ngFor="let recipe of recipes">

Hope that helps.