1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-18 13:48:58 +02:00

update archive feature change

This commit is contained in:
Thomas Heartman 2025-07-03 10:05:34 +02:00
parent a3f7b2354b
commit da382f067b

View File

@ -1,5 +1,5 @@
import type { FC, ReactNode } from 'react';
import { ChangeItemInfo, ChangeItemWrapper } from './Change.styles.tsx';
import { Action, ChangeItemInfo, ChangeItemWrapper } from './Change.styles.tsx';
import { styled } from '@mui/material';
import { ChangeItemWrapper as LegacyChangeItemWrapper } from './LegacyStrategyChange.tsx';
@ -30,7 +30,7 @@ export const LegacyArchiveFeatureChange: FC<ArchiveFeatureChange> = ({
export const ArchiveFeatureChange: FC<ArchiveFeatureChange> = ({ actions }) => (
<ChangeItemWrapper>
<ArchiveBox>Archiving flag</ArchiveBox>
<Action color='error.main'>Archiving flag</Action>
{actions}
</ChangeItemWrapper>
);