Fixes the fdroid flavor

This commit is contained in:
Vitor Pamplona 2024-03-06 14:27:22 -05:00
parent 2038994613
commit c796cbd7be

View File

@ -34,6 +34,7 @@ fun TranslatableRichTextViewer(
modifier: Modifier = Modifier, modifier: Modifier = Modifier,
tags: ImmutableListOfLists<String>, tags: ImmutableListOfLists<String>,
backgroundColor: MutableState<Color>, backgroundColor: MutableState<Color>,
id: String,
accountViewModel: AccountViewModel, accountViewModel: AccountViewModel,
nav: (String) -> Unit, nav: (String) -> Unit,
) = ExpandableRichTextViewer( ) = ExpandableRichTextViewer(
@ -42,6 +43,7 @@ fun TranslatableRichTextViewer(
modifier, modifier,
tags, tags,
backgroundColor, backgroundColor,
id,
accountViewModel, accountViewModel,
nav, nav,
) )