Skip to content

Commit

Permalink
fix: capitalize error boundary text (#1173)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Hopper-Lowe <[email protected]>
  • Loading branch information
ryanhopperlowe authored Jan 9, 2025
1 parent 8d2de63 commit 0110594
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/admin/app/components/errors/Error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function Error({ error }: { error: Error }) {
onClick={() => navigate(0)}
startContent={<RefreshCw />}
>
Try again
Try Again
</Button>

<div className="flex items-center gap-4 w-full">
Expand All @@ -47,7 +47,7 @@ export function Error({ error }: { error: Error }) {
variant="secondary"
to="/"
>
<HomeIcon /> Go home
<HomeIcon /> Go Home
</Link>

<Button
Expand All @@ -56,7 +56,7 @@ export function Error({ error }: { error: Error }) {
onClick={() => navigate(-1)}
startContent={<ArrowLeft />}
>
Go back
Go Back
</Button>
</div>
</CardFooter>
Expand Down

0 comments on commit 0110594

Please sign in to comment.