mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
Much better, still not perfect. The mobile and the desktop components are being rendered twice, and each of their methods are running twice as well. Going to see if I can modify the structure to get away with only using one.
14 lines
455 B
PHP
14 lines
455 B
PHP
@props([
|
|
'profileUser',
|
|
'authFollowIds' => collect(),
|
|
])
|
|
|
|
<div class="w-full max-w-sm">
|
|
<div class="flex w-full max-w-sm">
|
|
<livewire:user.follow-card relationship="followers" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
|
|
</div>
|
|
<div class="flex w-full max-w-sm">
|
|
<livewire:user.follow-card relationship="following" :profile-user="$profileUser" :auth-follow-ids="$authFollowIds" />
|
|
</div>
|
|
</div>
|