diff --git a/apps/web/src/components/Staff/Accounts/Overview/Tool/AccountOverview.tsx b/apps/web/src/components/Staff/Accounts/Overview/Tool/AccountOverview.tsx
index 39e518ce7968..1af9bb91762f 100644
--- a/apps/web/src/components/Staff/Accounts/Overview/Tool/AccountOverview.tsx
+++ b/apps/web/src/components/Staff/Accounts/Overview/Tool/AccountOverview.tsx
@@ -1,15 +1,6 @@
import MetaDetails from "@components/Shared/MetaDetails";
-import {
- BanknotesIcon,
- HandRaisedIcon,
- HashtagIcon,
- PhotoIcon
-} from "@heroicons/react/24/outline";
-import {
- CheckCircleIcon,
- ShieldCheckIcon,
- XCircleIcon
-} from "@heroicons/react/24/solid";
+import { BanknotesIcon, HashtagIcon } from "@heroicons/react/24/outline";
+import { ShieldCheckIcon } from "@heroicons/react/24/solid";
import formatAddress from "@hey/helpers/formatAddress";
import type { Account } from "@hey/indexer";
import { H5 } from "@hey/ui";
@@ -42,35 +33,6 @@ const AccountOverview: FC
= ({ account }) => {
>
{formatAddress(account.owner)}
- {account?.followNftAddress ? (
- }
- title="NFT address"
- value={account.followNftAddress.address}
- >
- {formatAddress(account.followNftAddress.address)}
-
- ) : null}
- }
- title="Has Lens Manager"
- >
- {account.signless ? (
-
- ) : (
-
- )}
-
- }
- title="Gas sponsored"
- >
- {account.sponsor ? (
-
- ) : (
-
- )}
-
>
);