We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c8416 commit f3f29b3Copy full SHA for f3f29b3
apps/extension/src/pages/setting/advanced/delete-suggest-chain/index.tsx
@@ -49,9 +49,8 @@ export const SettingGeneralDeleteSuggestChainPage: FunctionComponent = observer(
49
key={chainInfo.chainIdentifier}
50
chainInfo={chainInfo}
51
onClickClose={async () => {
52
- await chainStore.removeChainInfo(
53
- chainInfo.chainIdentifier
54
- );
+ // 여기서 chain identifier를 쓰면 안되고 꼭 chainId를 써야함
+ await chainStore.removeChainInfo(chainInfo.chainId);
55
56
dispatchGlobalEventExceptSelf(
57
"keplr_suggested_chain_removed"
0 commit comments