diff --git a/packages/icons/general/Copy.tsx b/packages/icons/general/Copy.tsx index cfc5ae8e708c..71387634955f 100644 --- a/packages/icons/general/Copy.tsx +++ b/packages/icons/general/Copy.tsx @@ -7,13 +7,11 @@ export const CopyIcon = createIcon( fillRule="evenodd" clipRule="evenodd" d="M7.736 12.538c-.898 0-1.68-.267-2.244-.793-.566-.53-.858-1.273-.858-2.117V4.882c0-.84.29-1.58.852-2.109.558-.525 1.335-.795 2.226-.8h.003l4.383-.001c.898 0 1.68.267 2.244.793.566.53.858 1.273.858 2.117v4.746c0 .84-.29 1.58-.852 2.109-.558.525-1.335.794-2.226.8h-.003l-4.383.001v-.533.533Zm0-1.066c-.689 0-1.19-.203-1.516-.507-.32-.3-.52-.745-.52-1.337V4.882c0-.588.198-1.032.516-1.332.322-.303.82-.506 1.5-.51h.002l4.38-.002c.689 0 1.19.203 1.515.507.321.3.52.745.52 1.337v4.746c0 .588-.197 1.032-.516 1.332-.321.302-.818.506-1.5.51l-4.381.002Z" - fill="#767F8D" /> , '0 0 16 17', diff --git a/packages/mask/src/components/shared/SelectRecipients/ProfileInList.tsx b/packages/mask/src/components/shared/SelectRecipients/ProfileInList.tsx index 1b57fde505a1..3f2a3f62be39 100644 --- a/packages/mask/src/components/shared/SelectRecipients/ProfileInList.tsx +++ b/packages/mask/src/components/shared/SelectRecipients/ProfileInList.tsx @@ -2,7 +2,7 @@ import { useCallback } from 'react' import { ListItemText, Checkbox, ListItemAvatar, ListItem } from '@mui/material' import { makeStyles, ShadowRootTooltip } from '@masknet/theme' import Highlighter from 'react-highlight-words' -import { formatPersonaPublicKey, ProfileInformationFromNextID } from '@masknet/shared-base' +import { formatPersonaFingerprint, ProfileInformationFromNextID } from '@masknet/shared-base' import { Avatar } from '../../../utils/components/Avatar' import { CopyIcon } from '@masknet/icons' import { truncate } from 'lodash-unified' @@ -112,7 +112,7 @@ export function ProfileInList(props: ProfileInListProps) { (ev: React.MouseEvent) => props.onChange(ev, !props.selected), [props], ) - const textToHighlight = formatPersonaPublicKey(profile.linkedPersona?.rawPublicKey?.toUpperCase() ?? '', 4) + const textToHighlight = formatPersonaFingerprint(profile.linkedPersona?.rawPublicKey?.toUpperCase() ?? '', 3) return ( , diff --git a/packages/mask/src/plugins/NextID/components/BindingItem.tsx b/packages/mask/src/plugins/NextID/components/BindingItem.tsx index 3619ac2cd908..a16aaec72842 100644 --- a/packages/mask/src/plugins/NextID/components/BindingItem.tsx +++ b/packages/mask/src/plugins/NextID/components/BindingItem.tsx @@ -22,7 +22,6 @@ const useStyles = makeStyles()((theme) => ({ }, copy: { fontSize: 16, - stroke: theme.palette.text.primary, cursor: 'pointer', }, address: {