We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33fef69 commit 103e8bcCopy full SHA for 103e8bc
src/components/CippCards/CippExchangeInfoCard.jsx
@@ -8,6 +8,7 @@ import {
8
IconButton,
9
Typography,
10
CircularProgress,
11
+ Alert,
12
} from "@mui/material";
13
import { PropertyList } from "/src/components/property-list";
14
import { PropertyListItem } from "/src/components/property-list-item";
@@ -59,6 +60,11 @@ export const CippExchangeInfoCard = (props) => {
59
60
</Stack>
61
}
62
/>
63
+ {exchangeData?.BlockedForSpam ? (
64
+ <Alert severity="warning" sx={{ mx: 2, mt: 2, mb: 2 }}>
65
+ This mailbox is currently blocked for spam.
66
+ </Alert>
67
+ ) : null}
68
<Divider />
69
<PropertyList>
70
<PropertyListItem
0 commit comments