feat: remove underline from link

This commit is contained in:
karishmas6
2024-10-24 04:57:52 +05:30
parent 1e5c492d12
commit a90944b69a

View File

@@ -154,7 +154,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
width: 'max-content',
}}>
<Typography key={`binary-output-key-${key}`} sx={{ margin: '20px 0px 20px 0px'}}>
<a href={imageUrl} download={key}>Download</a>
<a href={imageUrl} download={key} style={{ textDecoration: 'none' }}>Download</a>
</Typography>
<img key={`image-${key}`} src={imageUrl} alt={key} height='auto' width='700px' />
</Box>