Skip to content

Commit

Permalink
Fix missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tubarao312 committed Feb 3, 2024
1 parent 7101a0d commit 311b611
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/api/transactions/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import type {
UseQueryOptions,
UseQueryResult,
} from "react-query";
import { instance } from ".././instance";
import { useQuery } from "react-query";
import type { GetCombinedTransactions200 } from "../model/getCombinedTransactions200";
import type { GetCombinedTransactionsParams } from "../model/getCombinedTransactionsParams";
import type { GetTransactionsBetweenAddresses200 } from "../model/getTransactionsBetweenAddresses200";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import {
BarsArrowDownIcon,
ArrowDownLeftIcon,
ArrowUpRightIcon,
BarsArrowDownIcon,
} from "@heroicons/react/16/solid";
import { FC, useContext } from "react";
import { Transition } from "@headlessui/react";

import { Colors } from "../../../../utils/colors";
import formatNumber from "../../../../utils/formatNumber";
Expand Down

0 comments on commit 311b611

Please sign in to comment.