Skip to content

Commit ea4279c

Browse files
committed
fix: share button secondary color
Signed-off-by: amitamrutiya <amitamrutiya2210@gmail.com>
1 parent c5a9456 commit ea4279c

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/custom/ShareModal/ShareModal.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ const AccessList: React.FC<AccessListProps> = ({
9393
<ListItemText
9494
primary={`${actorData.first_name || ''} ${actorData.last_name || ''}`}
9595
secondary={actorData.email}
96+
secondaryTypographyProps={{
97+
sx: {
98+
color: theme.palette.background.neutral?.pressed
99+
}
100+
}}
96101
/>
97102
<ListItemSecondaryAction>
98103
{ownerData.id === actorData.id ? (
@@ -293,7 +298,7 @@ const ShareModal: React.FC<ShareModalProps> = ({
293298
</CustomSelect>
294299
<Typography
295300
sx={{
296-
color: theme.palette.text.secondary
301+
color: theme.palette.background.neutral?.pressed
297302
}}
298303
component="span"
299304
variant="body2"

0 commit comments

Comments
 (0)