Fix typo in ExtensionPaneWrapper.tsx (#401)

occured -> occurred
This commit is contained in:
Ikko Eltociear Ashimine 2023-03-08 21:37:18 +09:00 committed by GitHub
parent 7c410014e1
commit 8495c9c808
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,7 +119,7 @@ const ErrorContainer = styled.div`
const ErrorFallback: React.FC<{error: Error}> = (props) => { const ErrorFallback: React.FC<{error: Error}> = (props) => {
return ( return (
<ErrorContainer> <ErrorContainer>
An Error occured rendering this pane. Open the console for more info. An Error occurred rendering this pane. Open the console for more info.
<pre> <pre>
{JSON.stringify( {JSON.stringify(
{message: props.error.message, stack: props.error.stack}, {message: props.error.message, stack: props.error.stack},