Skip to content

Commit

Permalink
fix: use prop binding for images in transaction item components (#1590)
Browse files Browse the repository at this point in the history
  • Loading branch information
enesozturk authored Dec 20, 2023
1 parent 9cea47e commit 87fec4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/scaffold/src/views/w3m-transactions-view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class W3mTransactionsView extends LitElement {
id=${isLastTransaction && this.next ? PAGINATOR_ID : ''}
status=${status}
type=${type}
images=${images}
.images=${images}
.descriptions=${descriptions}
></wui-transaction-list-item>
`
Expand All @@ -152,7 +152,7 @@ export class W3mTransactionsView extends LitElement {
status=${status}
type=${type}
.onlyDirectionIcon=${true}
images=${[images?.[index]]}
.images=${[images?.[index]]}
.descriptions=${[description]}
></wui-transaction-list-item>`
})
Expand Down

3 comments on commit 87fec4d

@vercel
Copy link

@vercel vercel bot commented on 87fec4d Dec 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 87fec4d Dec 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 87fec4d Dec 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.