Skip to content

Commit

Permalink
Merge branch 'feat/show_raw_data_to_table' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
quangdz1704 committed Dec 20, 2023
2 parents 923ef2a + 9afa6a3 commit ad16e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Tx/TxData/TxMessage/TxMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const TxMessage = ({ key, msg, data, ind }) => {
} catch (error) {
messageParse = [{ error: rawLog }];
} finally {
const { events } = messageParse?.[0] || { events: [] };
const { events = [] } = messageParse?.[0] || { events: [] };
return (
<InfoRow label='RawLog'>
{!isLargeScreen ? (
Expand Down

0 comments on commit ad16e4f

Please sign in to comment.