Skip to content

Commit

Permalink
fix: decode log items with undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
tiendn committed Apr 11, 2023
1 parent 201ceb0 commit 95e45d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Card/CardInfo/Components/Decode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function Decode({ methodId, call, items }: DecodeProps) {
}
]}
rows={
items.map(item => ({
items?.map(item => ({
indexed: { content: item.indexed },
name: { content: item.name },
type: { content: item.type },
Expand Down

0 comments on commit 95e45d5

Please sign in to comment.