Skip to content

Commit

Permalink
fix username discovery for TEER addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Dec 17, 2024
1 parent 24d4ccb commit 7623c8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/tabs/MessagingTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,8 @@ const filteredLut = computed(() => {
});
const maybeUsername = (address: string) => {
const entry = identityLut.find((entry) => entry.address === address);
const pdotAddress = encodeAddress(address, 0);
const entry = identityLut.find((entry) => entry.address === pdotAddress);
return entry?.username;
};
Expand Down

0 comments on commit 7623c8e

Please sign in to comment.