I got an object project which contains some properties and an array, when I try to loop trough it like this it's not working:
<img *ngFor="let image of {{project?.acf.images}}" src="{{image.image.url}}">
When I display it like this: {{project?.acf.images[0].image.url}}, it perfectly shows the url. Anything wrong with my syntax?