cleanup friend invite buttons
Build Images and Deploy / Update-PROD-Stack (push) Successful in 33s

This commit is contained in:
2026-01-30 17:28:06 -05:00
parent 78785aee42
commit 8ad834d778
2 changed files with 7 additions and 10 deletions
-7
View File
@@ -285,13 +285,6 @@ export default function Friends() {
>
{sending === friend.id ? 'Sending...' : 'Add Friend'}
</button>
<button
className="btn btn-danger btn-sm"
onClick={() => handleRemoveFriend(friend.id, friend.username)}
disabled={removing === friend.id}
>
{removing === friend.id ? 'Removing...' : 'Remove'}
</button>
</div>
</div>
))}