Skip to content

Commit

Permalink
fix: ignore sdk-nova unresolved import
Browse files Browse the repository at this point in the history
  • Loading branch information
msarcev committed Jan 23, 2024
1 parent b980538 commit a704189
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions api/src/utils/nova/associatedOutputsHelper.ts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface IOutputTableItem {
const PAGE_SIZE = 10;

const AssociationSection: React.FC<IAssociatedSectionProps> = ({ 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<number | undefined>();
Expand Down
8 changes: 7 additions & 1 deletion client/src/app/routes/nova/OutputPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,13 @@ const OutputPage: React.FC<RouteComponentProps<OutputPageProps>> = ({
</div>
<div className="section">
<div className="card">
<OutputView network={network} outputId={outputId} output={output} showCopyAmount={true} isPreExpanded={true} />
<OutputView
network={network}
outputId={outputId}
output={output}
showCopyAmount={true}
isPreExpanded={true}
/>
</div>

<div className="section--header row row--tablet-responsive middle space-between">
Expand Down

0 comments on commit a704189

Please sign in to comment.