I'm encountering an issue on a website where users can vote for their favorite animal. Whenever I try to select an animal to vote for, I receive an unclear error message that has been difficult to resolve even after searching online for a solution.
Any assistance would be greatly appreciated.
html
<div class='wrapper'>
<div class="cat" *ngFor="let cat of twoCatsArray" (click)="voteForThisCat(cat.id)">
<img class="cat-image" [src]="cat.url">
</div>
</div>
ts.file
// TypeScript code here...