Skip to content

Commit

Permalink
fix: duplicated avatars
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Sep 18, 2024
1 parent 9ba5711 commit fcf111d
Showing 1 changed file with 0 additions and 50 deletions.
50 changes: 0 additions & 50 deletions resources/views/livewire/about-users-avatars.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,55 +13,5 @@ class="flex-shrink-0 transition-opacity hover:opacity-90"
class="{{ $user->is_company_verified ? 'rounded-md' : 'rounded-full' }} h-12 w-12"
/>
</a>
<a
class="flex-shrink-0 transition-opacity hover:opacity-90"
href="{{ route('profile.show', ['username' => $user->username]) }}"
>
<img
src="{{ $user->avatar_url }}"
alt="{{ $user->username }}"
class="{{ $user->is_company_verified ? 'rounded-md' : 'rounded-full' }} h-12 w-12"
/>
</a>
<a
class="flex-shrink-0 transition-opacity hover:opacity-90"
href="{{ route('profile.show', ['username' => $user->username]) }}"
>
<img
src="{{ $user->avatar_url }}"
alt="{{ $user->username }}"
class="{{ $user->is_company_verified ? 'rounded-md' : 'rounded-full' }} h-12 w-12"
/>
</a>
<a
class="flex-shrink-0 transition-opacity hover:opacity-90"
href="{{ route('profile.show', ['username' => $user->username]) }}"
>
<img
src="{{ $user->avatar_url }}"
alt="{{ $user->username }}"
class="{{ $user->is_company_verified ? 'rounded-md' : 'rounded-full' }} h-12 w-12"
/>
</a>
<a
class="flex-shrink-0 transition-opacity hover:opacity-90"
href="{{ route('profile.show', ['username' => $user->username]) }}"
>
<img
src="{{ $user->avatar_url }}"
alt="{{ $user->username }}"
class="{{ $user->is_company_verified ? 'rounded-md' : 'rounded-full' }} h-12 w-12"
/>
</a>
<a
class="flex-shrink-0 transition-opacity hover:opacity-90"
href="{{ route('profile.show', ['username' => $user->username]) }}"
>
<img
src="{{ $user->avatar_url }}"
alt="{{ $user->username }}"
class="{{ $user->is_company_verified ? 'rounded-md' : 'rounded-full' }} h-12 w-12"
/>
</a>
@endforeach
</div>

0 comments on commit fcf111d

Please sign in to comment.