Skip to content

Commit

Permalink
Merge branch 'master' into ci-support-matrix-22
Browse files Browse the repository at this point in the history
  • Loading branch information
usamaidrsk authored Jan 10, 2025
2 parents 052b660 + d716685 commit c67c104
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/custom/CatalogDetail/SocialSharePopper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const SocialSharePopper: React.FC<SocialSharePopperProps> = ({
size="small"
onClick={() => handleCopyUrl(cleanedType, details?.name, details?.id)}
>
<ChainIcon height={'24'} width={'24'} fill={theme.palette.icon.inverse} />
<ChainIcon height={'24'} width={'24'} fill={theme.palette.text.constant?.white} />
</ShareSideButton>
</CustomTooltip>
</ShareButtonGroup>
Expand Down
10 changes: 9 additions & 1 deletion src/custom/ShareModal/ShareModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,14 @@ const ShareModal: React.FC<ShareModalProps> = ({
<PublicIcon
width={24}
height={24}
fill={theme.palette.icon.default}
stroke={theme.palette.mode === 'dark' ? WHITE : BLACK}
/>
) : (
<LockIcon
width={24}
height={24}
fill={theme.palette.icon.default}
stroke={theme.palette.mode === 'dark' ? WHITE : BLACK}
/>
)}
Expand All @@ -289,7 +291,13 @@ const ShareModal: React.FC<ShareModalProps> = ({
</MenuItem>
))}
</CustomSelect>
<Typography component="span" variant="body2">
<Typography
sx={{
color: theme.palette.text.secondary
}}
component="span"
variant="body2"
>
{selectedOption === SHARE_MODE.PRIVATE ? options.PRIVATE : options.PUBLIC}
</Typography>
</div>
Expand Down

0 comments on commit c67c104

Please sign in to comment.