From c796cbd7beb2ff8679cdc8db215040dfb782ba14 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Wed, 6 Mar 2024 14:27:22 -0500 Subject: [PATCH] Fixes the fdroid flavor --- .../amethyst/ui/components/TranslatableRichTextViewer.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/fdroid/java/com/vitorpamplona/amethyst/ui/components/TranslatableRichTextViewer.kt b/app/src/fdroid/java/com/vitorpamplona/amethyst/ui/components/TranslatableRichTextViewer.kt index fe225dcaf..b5f4b216b 100644 --- a/app/src/fdroid/java/com/vitorpamplona/amethyst/ui/components/TranslatableRichTextViewer.kt +++ b/app/src/fdroid/java/com/vitorpamplona/amethyst/ui/components/TranslatableRichTextViewer.kt @@ -34,6 +34,7 @@ fun TranslatableRichTextViewer( modifier: Modifier = Modifier, tags: ImmutableListOfLists, backgroundColor: MutableState, + id: String, accountViewModel: AccountViewModel, nav: (String) -> Unit, ) = ExpandableRichTextViewer( @@ -42,6 +43,7 @@ fun TranslatableRichTextViewer( modifier, tags, backgroundColor, + id, accountViewModel, nav, )