Skip to content

Commit 3eff40b

Browse files
committed
fix: types
1 parent e248884 commit 3eff40b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/namadillo/src/App/Transfer/AddressDropdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Keplr } from "@keplr-wallet/types";
12
import { AccountType } from "@namada/types";
23
import { shortenAddress } from "@namada/utils";
34
import { routes } from "App/routes";
@@ -53,7 +54,7 @@ export const AddressDropdown = ({
5354

5455
// Helper function to fetch Keplr address for the appropriate chain
5556
const fetchKeplrAddressForChain = async (
56-
keplrInstance: any
57+
keplrInstance: Keplr
5758
): Promise<void> => {
5859
let chainId: string | undefined;
5960

@@ -291,7 +292,6 @@ export const AddressDropdown = ({
291292
location.pathname !== routes.maspShield &&
292293
isShieldedAddress(destinationAddress ?? "");
293294
const isShieldingTxn = location.pathname === routes.maspShield;
294-
295295
const disabled =
296296
(keplr && isShieldedTransfer) ||
297297
(transparent && isShieldedTransfer) ||

0 commit comments

Comments
 (0)