Skip to content

Commit

Permalink
fix: account discovery last used account index calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
peronczyk committed Sep 27, 2023
1 parent 51c7e86 commit 9a18acc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/popup/components/AddressTruncated.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="address-truncated">
<ProtocolIcon
v-if="showProtocolIcon"
v-if="protocol"
:protocol="protocol"
class="protocol-icon"
/>
Expand Down Expand Up @@ -47,9 +47,8 @@ export default defineComponent({
},
props: {
address: { type: String, required: true },
protocol: { type: String as PropType<Protocol>, required: true },
protocol: { type: String as PropType<Protocol>, default: null },
showExplorerLink: Boolean,
showProtocolIcon: Boolean,
},
setup(props) {
const truncatedAddress = computed(() => truncateAddress(props.address));
Expand Down
1 change: 0 additions & 1 deletion src/popup/components/TransactionDetailsPoolTokenRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
v-if="token.contractId"
show-explorer-link
:address="token.contractId"
:protocol="PROTOCOL_AETERNITY"
/>
</div>
</div>
Expand Down

0 comments on commit 9a18acc

Please sign in to comment.