Skip to content

Commit

Permalink
!fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jagnani73 committed May 8, 2024
1 parent 5995a0a commit 228bb9d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Molecules/AddressDetails/AddressDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
} from "@radix-ui/react-dropdown-menu";
import { CaretDownIcon } from "@radix-ui/react-icons";
import { CardDetail } from "@/components/Shared";
import { CardDetailProps } from "@/utils/types/shared.types";
import { type CardDetailProps } from "@/utils/types/shared.types";

export const AddressDetails: React.FC<AddressDetailsProps> = ({
address,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Molecules/BlockDetails/BlockDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { timestampParser } from "@/utils/functions";
import { None, Some, type Option } from "@/utils/option";
import { useGoldRush } from "@/utils/store";
import { type BlockDetailsProps } from "@/utils/types/molecules.types";
import { CardDetailProps } from "@/utils/types/shared.types";
import { type CardDetailProps } from "@/utils/types/shared.types";
import { type Block } from "@covalenthq/client-sdk";
import { useEffect, useState } from "react";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { timestampParser } from "@/utils/functions";
import { None, Some, type Option } from "@/utils/option";
import { useGoldRush } from "@/utils/store";
import { type TransactionDetailsProps } from "@/utils/types/molecules.types";
import { CardDetailProps } from "@/utils/types/shared.types";
import { type CardDetailProps } from "@/utils/types/shared.types";
import {
calculatePrettyBalance,
type Transaction,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Skeleton } from "@/components/ui/skeleton";
import { GRK_SIZES } from "@/utils/constants/shared.constants";
import { Button } from "@/components/ui/button";
import { Card } from "@/components/ui/card";
import { CardDetailProps } from "@/utils/types/shared.types";
import { type CardDetailProps } from "@/utils/types/shared.types";
import { Address } from "@/components/Atoms";

export const XYKPoolInformation: React.FC<XYKPoolInformationProps> = ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Skeleton } from "@/components/ui/skeleton";
import { GRK_SIZES } from "@/utils/constants/shared.constants";
import { Button } from "@/components/ui/button";
import { Card } from "@/components/ui/card";
import { CardDetailProps } from "@/utils/types/shared.types";
import { type CardDetailProps } from "@/utils/types/shared.types";
import { Address } from "@/components/Atoms";

export const XYKTokenInformation: React.FC<XYKTokenInformationProps> = ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { type XYKWalletInformationProps } from "@/utils/types/molecules.types";
import { Skeleton } from "@/components/ui/skeleton";
import { GRK_SIZES } from "@/utils/constants/shared.constants";
import { Card } from "@/components/ui/card";
import { CardDetailProps } from "@/utils/types/shared.types";
import { type CardDetailProps } from "@/utils/types/shared.types";

export const XYKWalletInformation: React.FC<XYKWalletInformationProps> = ({
chain_name,
Expand Down

0 comments on commit 228bb9d

Please sign in to comment.