From b0a7219db26e6168e9c9a348e4e1e03acd0487cc Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Tue, 15 Sep 2026 15:32:10 +0000 Subject: [PATCH] android: show "Get your code" button in all app flavours (#7514) --- .../common/views/badges/BadgesSupportSimplexView.kt | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesSupportSimplexView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesSupportSimplexView.kt index a9d935cdde..48ef36ece1 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesSupportSimplexView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesSupportSimplexView.kt @@ -125,14 +125,10 @@ private fun RedeemCodeButton() { @Composable private fun GetCodeButton() { val uriHandler = LocalUriHandler.current - if (platform.androidHasPlatformStore) { - TextButtonBelowOnboardingButton("", null) - } else { - TextButtonBelowOnboardingButton( - text = stringResource(MR.strings.badges_get_your_code), - onClick = { uriHandler.openExternalLink("https://simplex.chat/badges/") } - ) - } + TextButtonBelowOnboardingButton( + text = stringResource(MR.strings.badges_get_your_code), + onClick = { uriHandler.openExternalLink("https://simplex.chat/badges/") } + ) } @Composable