Skip to content

Commit

Permalink
Change shortened EOA length
Browse files Browse the repository at this point in the history
  • Loading branch information
youngkidwarrior committed Jul 19, 2024
1 parent 9237fb2 commit 00dbe0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app/features/send/confirm/screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ export function SendRecipient({ ...props }: YStackProps) {
{(() => {
switch (true) {
case idType === 'address':
return shorten(recipient, 6, 6)
return shorten(recipient, 5, 4)
case !!profile?.tag:
return `/${profile?.tag}`
default:
Expand Down
2 changes: 1 addition & 1 deletion packages/playwright/tests/send.onboarded.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ for (const token of tokens) {
(() => {
switch (idType) {
case 'address':
return shorten(recvAccount.address, 6, 6)
return shorten(recvAccount.address, 5, 4)
case 'sendid':
return `#${profile.sendId}`
default:
Expand Down

0 comments on commit 00dbe0b

Please sign in to comment.