From a7041892ed8d4e529f7cdcc7bc9d9eb3f6f8e9e4 Mon Sep 17 00:00:00 2001 From: Mario Sarcevic Date: Tue, 23 Jan 2024 23:58:38 +0100 Subject: [PATCH] fix: ignore sdk-nova unresolved import --- api/src/utils/nova/associatedOutputsHelper.ts | 1 + .../address/section/association/AssociationSection.tsx | 2 +- client/src/app/routes/nova/OutputPage.tsx | 8 +++++++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/api/src/utils/nova/associatedOutputsHelper.ts b/api/src/utils/nova/associatedOutputsHelper.ts index 4d0693129..688d26c6e 100644 --- a/api/src/utils/nova/associatedOutputsHelper.ts +++ b/api/src/utils/nova/associatedOutputsHelper.ts @@ -1,4 +1,5 @@ /* eslint-disable import/no-unresolved */ +/* eslint-disable @typescript-eslint/no-redundant-type-constituents */ /* eslint-disable @typescript-eslint/no-unsafe-argument */ /* eslint-disable @typescript-eslint/no-unsafe-return */ import { diff --git a/client/src/app/components/nova/address/section/association/AssociationSection.tsx b/client/src/app/components/nova/address/section/association/AssociationSection.tsx index b05c114c4..7a3daef51 100644 --- a/client/src/app/components/nova/address/section/association/AssociationSection.tsx +++ b/client/src/app/components/nova/address/section/association/AssociationSection.tsx @@ -25,7 +25,7 @@ interface IOutputTableItem { const PAGE_SIZE = 10; const AssociationSection: React.FC = ({ network, association, outputIds }) => { - const { tokenInfo } = useNetworkInfoNova(s => s.networkInfo); + const { tokenInfo } = useNetworkInfoNova((s) => s.networkInfo); const [isExpanded, setIsExpanded] = useState(false); const [isFormatBalance, setIsFormatBalance] = useState(false); const [loadMoreCounter, setLoadMoreCounter] = useState(); diff --git a/client/src/app/routes/nova/OutputPage.tsx b/client/src/app/routes/nova/OutputPage.tsx index ae2078cb2..918ff3c8a 100644 --- a/client/src/app/routes/nova/OutputPage.tsx +++ b/client/src/app/routes/nova/OutputPage.tsx @@ -60,7 +60,13 @@ const OutputPage: React.FC> = ({
- +