diff --git a/ui/components/NFTs/Filters/NFTsFilters.tsx b/ui/components/NFTs/Filters/NFTsFilters.tsx index 8df301f45..32a310fdc 100644 --- a/ui/components/NFTs/Filters/NFTsFilters.tsx +++ b/ui/components/NFTs/Filters/NFTsFilters.tsx @@ -155,7 +155,7 @@ export default function NFTsFilters(): ReactElement { display: flex; flex-direction: column; gap: 16px; - height: 456px; + height: 471px; overflow-y: scroll; padding: 0 24px 8px; } diff --git a/ui/components/Shared/SharedAddress.tsx b/ui/components/Shared/SharedAddress.tsx index 6c960f7ec..6f3c1befa 100644 --- a/ui/components/Shared/SharedAddress.tsx +++ b/ui/components/Shared/SharedAddress.tsx @@ -5,6 +5,7 @@ import classNames from "classnames" import React, { ReactElement, useCallback } from "react" import { useBackgroundDispatch } from "../../hooks" import SharedTooltip from "./SharedTooltip" +import { trimWithEllipsis } from "../../utils/textUtils" type SharedAddressProps = { address: string @@ -53,7 +54,7 @@ export default function SharedAddress({ className={classNames({ ellipsis: elide })} >
- {primaryText}
+ {trimWithEllipsis(primaryText, 15)}
{name !== undefined && nameResolverSystem !== undefined && (
<>