We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5084e72 commit c54cc82Copy full SHA for c54cc82
examples/ibc-asset-list/components/asset-list/RowTransferModal.tsx
@@ -160,8 +160,8 @@ const TransferModalBody = (
160
161
const destChain = useMemo(() => {
162
return {
163
- symbol: destChainInfo.chainName.toUpperCase(),
164
- name: destChainInfo.prettyName,
+ symbol: destChainInfo?.chainName.toUpperCase(),
+ name: destChainInfo?.prettyName,
165
address: destAddress ?? '',
166
imgSrc: chains.find(c => c.chainName === destChainName)?.logoURIs?.png
167
};
0 commit comments