Skip to content

Commit

Permalink
- fix nullable issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Feb 17, 2024
1 parent 6b2069d commit d0bd637
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal fun MarkdownBasicText(
fontFamily: FontFamily? = null,
letterSpacing: TextUnit = TextUnit.Unspecified,
textDecoration: TextDecoration? = null,
textAlign: TextAlign? = null,
textAlign: TextAlign = TextAlign.Unspecified,
lineHeight: TextUnit = TextUnit.Unspecified,
overflow: TextOverflow = TextOverflow.Clip,
softWrap: Boolean = true,
Expand Down Expand Up @@ -81,7 +81,7 @@ internal fun MarkdownBasicText(
fontFamily: FontFamily? = null,
letterSpacing: TextUnit = TextUnit.Unspecified,
textDecoration: TextDecoration? = null,
textAlign: TextAlign? = null,
textAlign: TextAlign = TextAlign.Unspecified,
lineHeight: TextUnit = TextUnit.Unspecified,
overflow: TextOverflow = TextOverflow.Clip,
softWrap: Boolean = true,
Expand Down

0 comments on commit d0bd637

Please sign in to comment.