Skip to content

Commit

Permalink
Merge pull request #847 from NethmiRanasinghe/fix-key-manager-enable-ui
Browse files Browse the repository at this point in the history
Fix UI bug related to enable/disable key manager in admin portal
  • Loading branch information
lasanthaS authored Jan 10, 2025
2 parents 9ccc10b + e8030e5 commit 914036d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import { useIntl, FormattedMessage } from 'react-intl';
import Typography from '@mui/material/Typography';
import Delete from 'AppComponents/KeyManagers/DeleteKeyManager';
import { Link as RouterLink, useHistory } from 'react-router-dom';
import Alert from '@mui/material/Alert';
import AlertMui from '@mui/material/Alert';
import Alert from 'AppComponents/Shared/Alert';
import Switch from '@mui/material/Switch';
import Button from '@mui/material/Button';
import {
Expand Down Expand Up @@ -683,7 +684,7 @@ export default function ListKeyManagers() {
if (error) {
return (
<ContentBase {...pageProps}>
<Alert severity='error'>{error}</Alert>
<AlertMui severity='error'>{error}</AlertMui>
</ContentBase>
);
}
Expand Down

0 comments on commit 914036d

Please sign in to comment.