Skip to content

Commit

Permalink
[Issue-3801] Fix display order history
Browse files Browse the repository at this point in the history
  • Loading branch information
S2kael committed Nov 6, 2024
1 parent 5f43832 commit 7e17f7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Component: React.FC<Props> = (props: Props) => {
const isNft = data.type === ExtrinsicType.SEND_NFT;
const isMint = isTypeMint(data.type);
const isLeavePool = isPoolLeave(data.type);
const hasOrderId = data.type === ExtrinsicType.TRANSFER_TOKEN;
const hasOrderId = !!(data.additionalInfo as TransactionAdditionalInfo[ExtrinsicType.TRANSFER_BALANCE])?.orderId;
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const additionalInfo = data.additionalInfo;

Expand Down

0 comments on commit 7e17f7f

Please sign in to comment.