Skip to content

Commit

Permalink
fix btn alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFlashAccount committed May 22, 2024
1 parent e0ff8f9 commit 50b3e3d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,11 @@ function DefaultFallbackComponent(props: errorBoundary.FallbackProps): React.JSX
title={getText('arbitraryErrorTitle')}
subtitle={getText('arbitraryErrorSubtitle')}
>
<aria.Button variant="submit" size="medium" onPress={resetErrorBoundary}>
{getText('tryAgain')}
</aria.Button>
<aria.ButtonGroup align="center">
<aria.Button variant="submit" size="medium" onPress={resetErrorBoundary}>
{getText('tryAgain')}
</aria.Button>
</aria.ButtonGroup>
</result.Result>
)
}
Expand Down

0 comments on commit 50b3e3d

Please sign in to comment.