Skip to content

Commit 63de50b

Browse files
author
James Bartnik
committed
Remove unused imports
1 parent fee7484 commit 63de50b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

apps/sentry-client-desktop/src/features/keys/HasKeys.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ import {useOperatorRuntime} from "@/hooks/useOperatorRuntime";
2121
import {accruingStateAtom} from "@/hooks/useAccruingInfo";
2222
import {ethers} from "ethers";
2323
import {BiLoaderAlt} from "react-icons/bi";
24-
import {EarnedEsxaiBalance, useGetWalletBalance} from "@/hooks/useGetWalletBalance";
24+
import {useGetWalletBalance} from "@/hooks/useGetWalletBalance";
2525

2626
interface HasKeysProps {
2727
combinedOwners: string[],
2828
combinedLicensesMap: LicenseMap,
2929
statusMap: StatusMap,
3030
isWalletAssignedMap: WalletAssignedMap,
31-
earnedEsxaiBalance: EarnedEsxaiBalance,
3231
}
3332

3433
export function HasKeys({combinedOwners, combinedLicensesMap, statusMap, isWalletAssignedMap}: HasKeysProps) {

apps/sentry-client-desktop/src/features/keys/Keys.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export function Keys() {
2222
licensesLoading,
2323
combinedLicensesMap,
2424
combinedLicensesList,
25-
earnedEsxaiBalance
2625
} = useAtomValue(chainStateAtom);
2726
const [drawerState, setDrawerState] = useAtom(drawerStateAtom);
2827
const {combinedOwners, walletAssignedMap} = useCombinedOwners(owners);
@@ -92,7 +91,6 @@ export function Keys() {
9291
combinedLicensesMap={combinedLicensesMap}
9392
statusMap={ownersKycMap}
9493
isWalletAssignedMap={walletAssignedMap}
95-
earnedEsxaiBalance={earnedEsxaiBalance}
9694
/>
9795
)}
9896
</>

0 commit comments

Comments
 (0)