Skip to content

Commit

Permalink
fix(notifications): light mode text color
Browse files Browse the repository at this point in the history
  • Loading branch information
antonstjernquist committed Jan 26, 2024
1 parent 7f96c3c commit b07e576
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ const NotificationBase = forwardRef<HTMLDivElement, NotificationBaseProps>((prop
<Typography color="#bfbfbf">{secondaryTitle}</Typography>
</Box>
</Box>
<StyledMessage>{message}</StyledMessage>
<StyledMessage>
<Typography>{message}</Typography>
</StyledMessage>
</StyledSnackbar>
);
});
Expand Down

0 comments on commit b07e576

Please sign in to comment.