Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mattupham committed Jun 4, 2024
1 parent e688f06 commit 3591b26
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 19 deletions.
12 changes: 0 additions & 12 deletions packages/web/components/token-details/token-details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,18 +318,6 @@ const TokenStats: FunctionComponent<TokenStatsProps> = observer(
: "-"}
</h5>
</li>
{/* <li className="flex flex-col items-start gap-3">
<p className="text-base font-subtitle1 leading-6 text-osmoverse-300">
{t("tokenInfos.tvl")}
</p>
<h5 className="text-xl font-h5 leading-8">
{totalValueLocked && usdFiat
? formatPretty(
new PricePretty(usdFiat, new Dec(totalValueLocked))
)
: "-"}
</h5>
</li> */}
</ul>
);
}
Expand Down
4 changes: 2 additions & 2 deletions packages/web/modals/wallet-select/cosmos-wallet-state.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import OneClickTradingSettings from "~/components/one-click-trading/one-click-tr
import OneClickTradingWelcomeBack from "~/components/one-click-trading/one-click-trading-welcome-back";
import { Screen, ScreenManager } from "~/components/screen-manager";
import { Button } from "~/components/ui/button";
import { ConnectingWalletState } from "~/components/wallet-states/connecting-wallet-state";
import { ErrorWalletState } from "~/components/wallet-states/error-wallet-state";
import { ConnectingWalletState } from "~/components/wallet-states";
import { ErrorWalletState } from "~/components/wallet-states";
import { CosmosWalletRegistry } from "~/config";
import { useFeatureFlags, useTranslation, WalletSelectOption } from "~/hooks";
import { useHasInstalledCosmosWallets } from "~/hooks/use-has-installed-wallets";
Expand Down
4 changes: 2 additions & 2 deletions packages/web/modals/wallet-select/evm-wallet-state.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { observer } from "mobx-react-lite";
import React, { FunctionComponent } from "react";

import { Button } from "~/components/ui/button";
import { ConnectingWalletState } from "~/components/wallet-states/connecting-wallet-state";
import { ErrorWalletState } from "~/components/wallet-states/error-wallet-state";
import { ConnectingWalletState } from "~/components/wallet-states";
import { ErrorWalletState } from "~/components/wallet-states";
import { useTranslation } from "~/hooks";
import { ConnectEvmWalletReturn } from "~/hooks/evm-wallet";
import { WalletSelectModalProps } from "~/modals/wallet-select";
Expand Down
6 changes: 3 additions & 3 deletions packages/web/pages/assets/[denom].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ import {
import HistoricalPriceChartV2 from "~/components/chart/price-historical-v2";
import { Spinner } from "~/components/loaders/spinner";
import { SwapTool } from "~/components/swap-tool";
import { TokenDetailsWithObserver } from "~/components/token-details/token-details";
import { TwitterSection } from "~/components/twitter-section/twitter-section";
import { TokenDetailsWithObserver } from "~/components/token-details";
import { TwitterSection } from "~/components/twitter-section";
import { LinkIconButton } from "~/components/ui/button";
import { Button } from "~/components/ui/button";
import { YourBalance } from "~/components/your-balance/your-balance";
import { YourBalance } from "~/components/your-balance";
import { COINGECKO_PUBLIC_URL, EventName, TWITTER_PUBLIC_URL } from "~/config";
import { AssetLists } from "~/config/generated/asset-lists";
import { ChainList } from "~/config/generated/chain-list";
Expand Down

0 comments on commit 3591b26

Please sign in to comment.