diff --git a/apps/extension/src/pages/sign/components/ledger-guide-box.tsx b/apps/extension/src/pages/sign/components/ledger-guide-box.tsx index fd5c5cd333..63745184ac 100644 --- a/apps/extension/src/pages/sign/components/ledger-guide-box.tsx +++ b/apps/extension/src/pages/sign/components/ledger-guide-box.tsx @@ -16,7 +16,7 @@ import { PlainObject } from "@keplr-wallet/background"; import { FormattedMessage, useIntl } from "react-intl"; export const LedgerGuideBox: FunctionComponent<{ - data?: { + data: { keyInsensitive: PlainObject; isEthereum: boolean; }; diff --git a/apps/extension/src/pages/starknet/components/account-activation-modal/index.tsx b/apps/extension/src/pages/starknet/components/account-activation-modal/index.tsx index 6a903f4f23..d11c78fc40 100644 --- a/apps/extension/src/pages/starknet/components/account-activation-modal/index.tsx +++ b/apps/extension/src/pages/starknet/components/account-activation-modal/index.tsx @@ -21,6 +21,7 @@ import { Column, Columns } from "../../../../components/column"; import { SubmitStarknetTxHashMsg, GetStarknetKeyParamsSelectedMsg, + PlainObject, } from "@keplr-wallet/background"; import { InExtensionMessageRequester } from "@keplr-wallet/router-extension"; import { BACKGROUND_PORT, KeplrError } from "@keplr-wallet/router"; @@ -56,12 +57,18 @@ export const AccountActivationModal: FunctionComponent<{ chainId: string; onAccountDeployed?: () => void; -}> = observer(({ close, goBack, chainId, onAccountDeployed }) => { + + data?: { + keyInsensitive: PlainObject; + isEthereum: boolean; + }; +}> = observer(({ close, goBack, chainId, onAccountDeployed, data }) => { const { chainStore, accountStore, starknetQueriesStore, starknetAccountStore, + keyRingStore, } = useStore(); const theme = useTheme(); @@ -320,6 +327,12 @@ export const AccountActivationModal: FunctionComponent<{ disableClick /> setIsAccountActivationModalOpen(false)} onAccountDeployed={() => { // account가 deploy 되었을때 gas simulator를 refresh한다.