Skip to content

Commit

Permalink
fix: break words first, break all second (#8495)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Oct 21, 2024
1 parent a8206f5 commit 69fcb57
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ const StyledUserAvatar = styled(UserAvatar)(({ theme }) => ({
marginTop: theme.spacing(0.5),
}));

const StyledMarkdown = styled(Markdown)(({ theme }) => ({
wordBreak: 'break-all',
}));
const StyledMarkdown = styled(Markdown)({
overflowWrap: 'anywhere',
});

export const LatestProjectEvents: FC<{
latestEvents: PersonalDashboardProjectDetailsSchema['latestEvents'];
Expand Down

0 comments on commit 69fcb57

Please sign in to comment.