Skip to content

Commit

Permalink
Fix capitalization on user reset button
Browse files Browse the repository at this point in the history
URL is an acronym and should be capitalized.
  • Loading branch information
zmb3 committed Dec 26, 2024
1 parent 79a4ca8 commit dcfb5c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/packages/teleport/src/Users/UserReset/UserReset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function UserReset({
</DialogHeader>
<DialogContent>
{attempt.status === 'failed' && (
<Alert kind="danger" children={attempt.statusText} />
<Alert kind="danger">{attempt.statusText}</Alert>
)}
<Text mb={4} mt={1}>
You are about to reset authentication for user
Expand All @@ -75,7 +75,7 @@ export function UserReset({
disabled={attempt.status === 'processing'}
onClick={onReset}
>
Generate reset url
Generate Reset URL
</ButtonPrimary>
<ButtonSecondary onClick={onClose}>Cancel</ButtonSecondary>
</DialogFooter>
Expand Down

0 comments on commit dcfb5c2

Please sign in to comment.