Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ fun ContactScreen(
}

HSScaffold(
title = stringResource(R.string.CoinPage_Indicators),
title = uiState.headerTitle.getString(),
onBack = confirmNavigateToBack,
menuItems = listOf(
MenuItem(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import androidx.compose.foundation.layout.navigationBarsPadding
import androidx.compose.foundation.layout.statusBarsPadding
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.stringResource
import androidx.lifecycle.viewmodel.compose.viewModel
import androidx.navigation.NavController
import io.horizontalsystems.bankwallet.R
Expand Down Expand Up @@ -53,7 +52,7 @@ private fun MarkdownScreen(
viewModel: MarkdownViewModel = viewModel(factory = MarkdownModule.Factory(markdownUrl))
) {
HSScaffold(
title = stringResource(R.string.CoinPage_Indicators),
title = "",
onBack = if (showAsPopup) null else onCloseClick,
menuItems = if (showAsPopup) listOf(
MenuItem(
Expand Down
Loading