Fixed base64 error

This commit is contained in:
Igor Katson 2023-12-03 09:49:10 +00:00
parent 63a21a50fd
commit ca66a70bc1
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
3 changed files with 6 additions and 5 deletions

View file

@ -401,7 +401,6 @@ const ErrorDetails = (props: { details: ApiErrorDetails | null | undefined }) =>
{details.statusText && <p><strong>{details.statusText}</strong></p>}
<pre>{details.text}</pre>
</>
}
const ErrorComponent = (props: { error: Error | null, remove?: () => void }) => {