Skip to content

Commit

Permalink
Update button text casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamaduka committed Dec 6, 2024
1 parent e836500 commit 0e8cca8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/editor/src/components/error-boundary/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ class ErrorBoundary extends Component {
{ __( 'The editor has encountered an unexpected error.' ) }
</Text>
<HStack expanded={ false }>
<CopyButton key="copy-post" text={ getContent }>
{ __( 'Copy Post Text' ) }
<CopyButton text={ getContent }>
{ __( 'Copy post text' ) }
</CopyButton>
<CopyButton key="copy-error" text={ error?.stack }>
{ __( 'Copy Error' ) }
<CopyButton text={ error?.stack }>
{ __( 'Copy error' ) }
</CopyButton>
</HStack>
</HStack>
Expand Down

0 comments on commit 0e8cca8

Please sign in to comment.