Skip to content

Commit

Permalink
Merge pull request Expensify#33957 from Expensify/vit-updateLineHeight
Browse files Browse the repository at this point in the history
[NoQA] Add line height style to the next steps
  • Loading branch information
nkuoch authored Jan 4, 2024
2 parents d5741af + daf8d0d commit b9ef51f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/HTMLEngineProvider/BaseHTMLEngineProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ function BaseHTMLEngineProvider(props) {
'mention-here': defaultHTMLElementModels.span.extend({tagName: 'mention-here'}),
'next-step': defaultHTMLElementModels.span.extend({
tagName: 'next-step',
mixedUAStyles: {...styles.textLabelSupporting},
mixedUAStyles: {...styles.textLabelSupporting, ...styles.lh16},
}),
'next-step-email': defaultHTMLElementModels.span.extend({tagName: 'next-step-email'}),
video: defaultHTMLElementModels.div.extend({
tagName: 'video',
mixedUAStyles: {whiteSpace: 'pre'},
}),
}),
[styles.colorMuted, styles.formError, styles.mb0, styles.textLabelSupporting],
[styles.colorMuted, styles.formError, styles.mb0, styles.textLabelSupporting, styles.lh16],
);

// We need to memoize this prop to make it referentially stable.
Expand Down

0 comments on commit b9ef51f

Please sign in to comment.