Skip to content

Commit

Permalink
fix: display user data on ad card correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
rasulov1337 committed Nov 5, 2024
1 parent 6660389 commit 8307028
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/AdCard/AdCard.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@
<div class='ad-card__author-info'>
<img
class='ad-card__img2'
src='{{authorAvatar}}'
src='{{author.avatar}}'
alt='User avatar'
/>
<p>{{authorName}}</p>
<p>{{author.name}}</p>
<div class='ad-card__score-container'>
<img class='ad-card__img3' src='/star.png' alt='star' />
<span class='ad-card__score'>{{authorRating}}</span>
<span class='ad-card__score'>{{author.rating}}</span>
</div>
</div>
</div>
Expand Down

0 comments on commit 8307028

Please sign in to comment.