fix(AddAppConnection): word break error messages

This commit is contained in:
Ali BARIN
2022-11-06 18:54:18 +01:00
committed by Faruk AYDIN
parent 72386bc589
commit ceea962464

View File

@@ -117,7 +117,10 @@ export default function AddAppConnection(
)}
{errorMessage && (
<Alert severity="error" sx={{ mt: 1, fontWeight: 500 }}>
<Alert
severity="error"
sx={{ mt: 1, fontWeight: 500, wordBreak: 'break-all' }}
>
{errorMessage}
</Alert>
)}