Skip to content

Commit

Permalink
fix: update address display to include beginning values
Browse files Browse the repository at this point in the history
  • Loading branch information
donnyquixotic committed Nov 28, 2023
1 parent 9bed197 commit 070a2fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/header/LoginStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
return this.nativeAccount;
}
return `0x...${this.address.slice(38, 42)}`;
return `${this.address.slice(0, 6)}...${this.address.slice(38, 42)}`;
},
},
methods: {
Expand Down

0 comments on commit 070a2fc

Please sign in to comment.