stage #3

Merged
ThaMunsta merged 4 commits from stage into main 2026-01-31 03:11:04 +00:00
Showing only changes of commit be91e1a078 - Show all commits

View File

@@ -263,8 +263,8 @@ export default function Friends() {
>
{removing === friend.id ? 'Removing...' : 'Remove'}
</button>
<div style={{ color: 'var(--primary)', whiteSpace: 'nowrap' }}>{friend.total_points} points</div>
</div>
<div style={{ color: 'var(--primary)', whiteSpace: 'nowrap' }}>{friend.total_points} points</div>
</div>
))}
{challengeFriends.length > 0 && (
@@ -296,8 +296,8 @@ export default function Friends() {
>
{sending === friend.id ? 'Sending...' : friend.friendship_status === 'pending' ? 'Pending' : 'Add Friend'}
</button>
<div style={{ color: 'var(--primary)', whiteSpace: 'nowrap' }}>{friend.total_points} points</div>
</div>
<div style={{ color: 'var(--primary)', whiteSpace: 'nowrap' }}>{friend.total_points} points</div>
</div>
))}
</>