Skip to content

Commit

Permalink
(Home, AppList): remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
cstenglein committed Jan 14, 2024
1 parent 681798d commit 359a2dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/pages/Apps/AppList.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { AppStatus } from "@/models/app-status";
import { App } from "@/models/app.model";
import { availableApps } from "@/utils/availableApps";
import { t } from "i18next";
import { FC } from "react";
import AppCard from "./AppCard";
import { App } from "@/models/app.model";

type Props = {
title: string;
Expand Down
5 changes: 2 additions & 3 deletions src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import PageLoadingScreen from "@/layouts/PageLoadingScreen";
import { AppContext } from "@/context/app-context";
import { SSEContext } from "@/context/sse-context";
import { useInterval } from "@/hooks/use-interval";
import useSSE from "@/hooks/use-sse";
import PageLoadingScreen from "@/layouts/PageLoadingScreen";
import { Transaction } from "@/models/transaction.model";
import { enableGutter } from "@/utils";
import { checkError } from "@/utils/checkError";
Expand All @@ -22,7 +22,6 @@ import TransactionCard from "./TransactionCard/TransactionCard";
import TransactionDetailModal from "./TransactionCard/TransactionDetailModal/TransactionDetailModal";
import UnlockModal from "./UnlockModal";
import WalletCard from "./WalletCard";
import { SSEContext } from "@/context/sse-context";

const startupToastId = "startup-toast";

Expand Down

0 comments on commit 359a2dd

Please sign in to comment.