Skip to content

Commit

Permalink
Short address fix for sign in modal
Browse files Browse the repository at this point in the history
  • Loading branch information
hide-on-bush-x committed Feb 7, 2023
1 parent 8b6af5d commit 9306dc8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -11,7 +11,7 @@ export const InterfaceAuthenticate = (): JSX.Element => {
const shortAddress = useMemo(() => {
return `${walletAddress?.substring(0, 2)}...${walletAddress?.substring(
walletAddress.length - 4,
walletAddress.length - 1
walletAddress.length
)}`;
}, [walletAddress]);

Expand Down

0 comments on commit 9306dc8

Please sign in to comment.