fix for dom nesting with elements like ul

This commit is contained in:
phyzical 2022-03-21 19:17:12 +08:00
parent ca02bdefd1
commit 14b4b08294

@ -66,7 +66,7 @@ export function AlertManager(): React.ReactElement {
{alerts.length > 0 && (
<Modal open={true} onClose={close}>
<Box overflow="scroll" sx={{ overflowWrap: "break-word", whiteSpace: "pre-line" }}>
<Typography>{alerts[0].text}</Typography>
<Typography component={'span'}>{alerts[0].text}</Typography>
</Box>
</Modal>
)}