Skip to content

Commit 390ab82

Browse files
committed
fix: remove Copiable styles and default to ui-component-library
1 parent de8980a commit 390ab82

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

web/src/components/InformationCards/RegistryInformationCard/TopInfo.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ const TopInfo: React.FC<ITopInfo> = ({
7474
info="Copy Registry Address"
7575
iconPlacement="left"
7676
tooltipProps={{
77-
className: "[&_small]:text-sm",
7877
small: true,
7978
}}
8079
>

web/src/components/InformationCards/RegistryInformationCard/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,7 @@ const RegistryInformationCard: React.FC<IInformationCard> = ({
7373
<div className="flex flex-wrap justify-between gap-5 pb-3" style={{ paddingInline: responsiveSize(24, 32) }}>
7474
<div className="flex flex-wrap gap-2 items-center leading-18px">
7575
<small>Submitted by:</small>
76-
<Copiable
77-
copiableContent={registerer?.id ?? ""}
78-
tooltipProps={{ className: "[&_small]:text-sm", small: true }}
79-
>
76+
<Copiable copiableContent={registerer?.id ?? ""} tooltipProps={{ small: true }}>
8077
<AliasDisplay address={registerer?.id} />
8178
</Copiable>
8279
</div>

0 commit comments

Comments
 (0)