From 539aa89639f01af771ea72dca8f4112cc155f3fe Mon Sep 17 00:00:00 2001 From: andreas-unleash Date: Tue, 7 Jun 2022 14:20:25 +0300 Subject: [PATCH] lint fix --- frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx b/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx index 4908017b7b..eb6f08e75c 100644 --- a/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx +++ b/frontend/src/component/archive/ArchiveTable/ArchiveTable.tsx @@ -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) => { ), }, ]; -} +};