@if (userProfile(); as profile) {
@if (profile.picture) { Profile picture } @else { account_circle }

{{ profile.name }}'s Following

} @else {
account_circle

Following

}
@if (isLoading()) {

Loading following list...

} @else if (error()) {
error

{{ error() }}

} @else if (followingList().length === 0) {
people_outline

This user is not following anyone.

} @else { @for (user of followingList(); track user.id) { } }
@if (mutualConnectionsList().length === 0) {
people_alt

No mutual connections found.

} @else { @for (user of mutualConnectionsList(); track user.id) {
@if (user.picture) { {{ user.name }}'s profile picture } @else { account_circle }
{{ user.name }}
{{ user.npub }}
}
}