consistency
Build Images and Deploy / Update-PROD-Stack (push) Successful in 32s

This commit is contained in:
2026-01-30 17:55:28 -05:00
parent 480ad66376
commit a2d5454780
+1 -1
View File
@@ -247,7 +247,6 @@ export default function Friends() {
<div style={{ fontSize: '0.875rem', color: 'var(--text-muted)' }}>{friend.email}</div> <div style={{ fontSize: '0.875rem', color: 'var(--text-muted)' }}>{friend.email}</div>
</div> </div>
<div style={{ display: 'flex', gap: '0.5rem', alignItems: 'center', flexShrink: 0 }}> <div style={{ display: 'flex', gap: '0.5rem', alignItems: 'center', flexShrink: 0 }}>
<div style={{ color: 'var(--primary)', whiteSpace: 'nowrap' }}>{friend.total_points} points</div>
<button <button
className="btn btn-danger btn-sm" className="btn btn-danger btn-sm"
onClick={() => handleRemoveFriend(friend.id, friend.username)} onClick={() => handleRemoveFriend(friend.id, friend.username)}
@@ -256,6 +255,7 @@ export default function Friends() {
> >
{removing === friend.id ? 'Removing...' : 'Remove'} {removing === friend.id ? 'Removing...' : 'Remove'}
</button> </button>
<div style={{ color: 'var(--primary)', whiteSpace: 'nowrap' }}>{friend.total_points} points</div>
</div> </div>
</div> </div>
))} ))}