Skip to content

Commit

Permalink
Merge pull request #10727 from hassnian/issue-10726
Browse files Browse the repository at this point in the history
fix: autoteleport signing dialog broken?
  • Loading branch information
vikiival authored Aug 2, 2024
2 parents 9018bc6 + f05ba72 commit e9b3825
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/shared/TransactionSteps/TransactionSteps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ const getStepItem = (step: TransactionStepWithActive): TransactionStepItem => {
const { status, text } = getTransactionStepDetails(step, $i18n.t)
let tsxText = text
const withCustomSubtitle
= Object.prototype.hasOwnProperty.call(step.stepStatusTextOverride, status) || false
const withCustomSubtitle = step.stepStatusTextOverride && status in step.stepStatusTextOverride
if (withCustomSubtitle) {
tsxText = step.stepStatusTextOverride?.[status] || ''
Expand Down

0 comments on commit e9b3825

Please sign in to comment.