Skip to content

Commit 7019158

Browse files
alexcamboseaditya520
authored andcommitted
fix
1 parent 8f1c627 commit 7019158

File tree

1 file changed

+4
-2
lines changed
  • apps/developer-hub/src/components/PriceFeedIdsCoreTable

1 file changed

+4
-2
lines changed

apps/developer-hub/src/components/PriceFeedIdsCoreTable/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
import { Paginator } from "@pythnetwork/component-library/Paginator";
44
import { 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";
67
import { useQueryParamFilterPagination } from "@pythnetwork/component-library/useQueryParamsPagination";
78
import { getPriceFeedAccountForProgram } from "@pythnetwork/pyth-solana-receiver";
89
import { Callout } from "fumadocs-ui/components/callout";
910
import { matchSorter } from "match-sorter";
1011
import { useEffect, useState } from "react";
1112
import { z } from "zod";
13+
1214
import CopyAddress from "../CopyAddress";
1315
import 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: {

0 commit comments

Comments
 (0)