Skip to content

Commit

Permalink
Fix a bug that destDenom of MsgRelationIBCSwap doesn't respond on…
Browse files Browse the repository at this point in the history
… observable
  • Loading branch information
Thunnini committed Apr 5, 2024
1 parent 1ef441c commit 04d5d23
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const MsgRelationIBCSwap: FunctionComponent<{
}
})();

const destDenom: string | undefined = useMemo(() => {
const destDenom: string | undefined = (() => {
try {
// osmosis가 시작 지점일 경우.
if (
Expand Down Expand Up @@ -154,7 +154,7 @@ export const MsgRelationIBCSwap: FunctionComponent<{
console.log(e);
return undefined;
}
}, [chainInfo, msg.ibcTracking, msg.msg, osmosisChainInfo]);
})();

return (
<MsgItemBase
Expand Down

0 comments on commit 04d5d23

Please sign in to comment.