1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
This commit is contained in:
andreas-unleash 2022-06-07 14:20:25 +03:00
parent 1b1f21caeb
commit 539aa89639

View File

@ -38,7 +38,7 @@ import theme from 'themes/theme';
import { FeatureSchema } from '../../../openapi';
import { useFeatureArchiveApi } from '../../../hooks/api/actions/useFeatureArchiveApi/useReviveFeatureApi';
import useToast from '../../../hooks/useToast';
import {formatUnknownError} from "../../../utils/formatUnknownError";
import { formatUnknownError } from '../../../utils/formatUnknownError';
export interface IFeaturesArchiveTableProps {
archivedFeatures: FeatureSchema[];
@ -326,4 +326,4 @@ const getColumns = (onRevive: (feature: string) => Promise<void>) => {
),
},
];
}
};