diff --git a/CHANGELOG.md b/CHANGELOG.md index ca0c8285a..b879d6736 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Allow ENS address on address list-item component + ### Added - Workflows to deploy Storybook previews diff --git a/src/components/listItem/address.tsx b/src/components/listItem/address.tsx index acf5cc881..db6ff3498 100644 --- a/src/components/listItem/address.tsx +++ b/src/components/listItem/address.tsx @@ -1,7 +1,7 @@ import React, { type ButtonHTMLAttributes, type FC } from 'react'; import styled from 'styled-components'; -import { IsAddress, shortenAddress } from '../../utils/addresses'; +import { shortenAddress } from '../../utils/addresses'; import { AvatarWallet } from '../avatar'; import { IconLinkExternal, IconPerson } from '../icons'; @@ -49,7 +49,7 @@ const Avatar: FC = ({ src }) => { if (!src) { return ; } - return ; + return ; }; const Container = styled.button.attrs(() => {