File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
apps/developer-hub/src/components/PriceFeedIdsCoreTable Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 22
33import { Paginator } from "@pythnetwork/component-library/Paginator" ;
44import { SearchInput } from "@pythnetwork/component-library/SearchInput" ;
5- import { Table , type ColumnConfig } from "@pythnetwork/component-library/Table" ;
5+ import type { ColumnConfig } from "@pythnetwork/component-library/Table" ;
6+ import { Table } from "@pythnetwork/component-library/Table" ;
67import { useQueryParamFilterPagination } from "@pythnetwork/component-library/useQueryParamsPagination" ;
78import { getPriceFeedAccountForProgram } from "@pythnetwork/pyth-solana-receiver" ;
89import { Callout } from "fumadocs-ui/components/callout" ;
910import { matchSorter } from "match-sorter" ;
1011import { useEffect , useState } from "react" ;
1112import { z } from "zod" ;
13+
1214import CopyAddress from "../CopyAddress" ;
1315import styles from "./index.module.scss" ;
1416
@@ -67,7 +69,7 @@ export const PriceFeedIdsCoreTable = () => {
6769
6870 const isLoading =
6971 state . type === StateType . Loading || state . type === StateType . NotLoaded ;
70-
72+
7173 const rows = paginatedItems . map ( ( feed ) => ( {
7274 id : feed . symbol ,
7375 data : {
You can’t perform that action at this time.
0 commit comments