Skip to content

Commit

Permalink
update color of errors
Browse files Browse the repository at this point in the history
  • Loading branch information
PipeItToDevNull committed Dec 16, 2024
1 parent 76813eb commit 40282a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swa/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const FileUpload = () => {
</div>
<div id="content">
{!error && !responseData && <p>{loading ? 'Processing...' : 'Upload your .dmp file or a .zip file containing multiple .dmp files directly or via a direct link.'}</p>}
{error && <p style={{ color: 'red' }}>{error}</p>}
{error && <p style={{ color: '#bf616a' }}>{error}</p>}
{responseData && (
<>{renderJsonToHtml(JSON.parse(responseData))}</>
)}
Expand Down

0 comments on commit 40282a0

Please sign in to comment.