1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

chore: fix lints on main (#5877)

These were introduced by prs created before the new biome update.
This commit is contained in:
Thomas Heartman 2024-01-12 17:08:08 +05:30 committed by GitHub
parent 8eb5a53ad9
commit a4c1161285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 9 deletions

View File

@ -57,14 +57,12 @@ export const StyledScheduleFailedIcon = styled(ErrorIcon)(({ theme }) => ({
marginRight: theme.spacing(1),
}));
export const StyledScheduleSuspendedIcon = styled(PauseCircle)(
({ theme }) => ({
color: theme.palette.text.secondary,
height: '35px',
width: '35px',
marginRight: theme.spacing(1),
}),
);
export const StyledScheduleSuspendedIcon = styled(PauseCircle)(({ theme }) => ({
color: theme.palette.text.secondary,
height: '35px',
width: '35px',
marginRight: theme.spacing(1),
}));
export const StyledEditIcon = styled(Edit)(({ theme }) => ({
color: theme.palette.text.secondary,

View File

@ -34,7 +34,6 @@ import {
ChangeRequestScheduleSuspended,
} from 'component/changeRequest/changeRequest.types';
import { getBrowserTimezone } from './utils';
import { ConditionallyRender } from '../../../common/ConditionallyRender/ConditionallyRender';
import { formatDateYMDHMS } from 'utils/formatDate';
interface ISuggestChangeReviewsStatusProps {