mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
chore: fix lints on main (#5877)
These were introduced by prs created before the new biome update.
This commit is contained in:
parent
8eb5a53ad9
commit
a4c1161285
@ -57,14 +57,12 @@ export const StyledScheduleFailedIcon = styled(ErrorIcon)(({ theme }) => ({
|
|||||||
marginRight: theme.spacing(1),
|
marginRight: theme.spacing(1),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const StyledScheduleSuspendedIcon = styled(PauseCircle)(
|
export const StyledScheduleSuspendedIcon = styled(PauseCircle)(({ theme }) => ({
|
||||||
({ theme }) => ({
|
color: theme.palette.text.secondary,
|
||||||
color: theme.palette.text.secondary,
|
height: '35px',
|
||||||
height: '35px',
|
width: '35px',
|
||||||
width: '35px',
|
marginRight: theme.spacing(1),
|
||||||
marginRight: theme.spacing(1),
|
}));
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
export const StyledEditIcon = styled(Edit)(({ theme }) => ({
|
export const StyledEditIcon = styled(Edit)(({ theme }) => ({
|
||||||
color: theme.palette.text.secondary,
|
color: theme.palette.text.secondary,
|
||||||
|
@ -34,7 +34,6 @@ import {
|
|||||||
ChangeRequestScheduleSuspended,
|
ChangeRequestScheduleSuspended,
|
||||||
} from 'component/changeRequest/changeRequest.types';
|
} from 'component/changeRequest/changeRequest.types';
|
||||||
import { getBrowserTimezone } from './utils';
|
import { getBrowserTimezone } from './utils';
|
||||||
import { ConditionallyRender } from '../../../common/ConditionallyRender/ConditionallyRender';
|
|
||||||
import { formatDateYMDHMS } from 'utils/formatDate';
|
import { formatDateYMDHMS } from 'utils/formatDate';
|
||||||
|
|
||||||
interface ISuggestChangeReviewsStatusProps {
|
interface ISuggestChangeReviewsStatusProps {
|
||||||
|
Loading…
Reference in New Issue
Block a user