Merge pull request 'stage' (#1) from stage into main
All checks were successful
Build Images and Deploy / Update-PROD-Stack (push) Successful in 33s

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-01-31 00:39:27 +00:00

View File

@@ -320,7 +320,7 @@ export default function ChallengeDetail() {
className="btn btn-primary btn-sm"
onClick={() => handleInvite(friend.id, friend.username)}
disabled={inviting === friend.id}
style={{ flexShrink: 0 }}
style={{ flexShrink: 0, width: 'auto' }}
>
{inviting === friend.id ? 'Inviting...' : 'Invite'}
</button>
@@ -376,7 +376,7 @@ export default function ChallengeDetail() {
className="btn btn-primary btn-sm"
onClick={() => handleInvite(user.id, user.username)}
disabled={inviting === user.id}
style={{ flexShrink: 0 }}
style={{ flexShrink: 0, width: 'auto' }}
>
{inviting === user.id ? 'Inviting...' : 'Invite'}
</button>