1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: change application success to checkbox icon (#6417)

This commit is contained in:
Jaanus Sellin 2024-03-04 14:16:45 +02:00 committed by GitHub
parent 68729333e0
commit 19fbd7a0c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,12 @@ import {
} from 'openapi';
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
import { HelpIcon } from '../common/HelpIcon/HelpIcon';
import { CloudCircle, Flag, WarningAmberRounded } from '@mui/icons-material';
import {
CheckCircle,
CloudCircle,
Flag,
WarningAmberRounded,
} from '@mui/icons-material';
import TimeAgo from 'react-timeago';
import { usePlausibleTracker } from 'hooks/usePlausibleTracker';
import { getApplicationIssueMode } from './ApplicationIssues/ApplicationIssues';
@ -127,7 +132,7 @@ const useElementWidth = () => {
};
const SuccessStatus = () => (
<StyledStatus mode='success'>
<WarningAmberRounded
<CheckCircle
sx={(theme) => ({
color: theme.palette.success.main,
})}