Skip to content

Commit

Permalink
fix: corrects wrongly generated line breaks detected in qa
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramir Mesquita committed Dec 23, 2024
1 parent 71d873b commit f5a0872
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/shared/ui/Items/SelectBase/SelectBaseText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ export const SelectBaseText = (props: Props) => {
lineHeight="28px"
testid="select-text"
sx={{
wordBreak: 'break-word',
cursor: 'pointer',
lineBreak: 'normal',
wordBreak: 'normal',
hyphens: 'auto',
display: '-webkit-box',
overflow: 'hidden',

// Using kebab-case (i.e. `-webkit-some-things`) would cause warnings
// in the JS console about kebab-case being not supported for CSS
Expand Down

0 comments on commit f5a0872

Please sign in to comment.