Skip to content

Commit

Permalink
(android) Fix settings text of experimental features (#647)
Browse files Browse the repository at this point in the history
  • Loading branch information
Crazy-Unicooorn authored Nov 8, 2024
1 parent 011c8b8 commit 3f9d14f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fun SettingsView(
Card {
MenuButton(text = stringResource(R.string.settings_wallet_info), icon = R.drawable.ic_box, onClick = { nc.navigate(Screen.WalletInfo) })
MenuButton(text = stringResource(R.string.settings_list_channels), icon = R.drawable.ic_zap, onClick = { nc.navigate(Screen.Channels) })
MenuButton(text = "Experimental features", icon = R.drawable.ic_experimental, onClick = { nc.navigate(Screen.Experimental) })
MenuButton(text = stringResource(R.string.experimental_title), icon = R.drawable.ic_experimental, onClick = { nc.navigate(Screen.Experimental) })
MenuButton(text = stringResource(R.string.settings_logs), icon = R.drawable.ic_text, onClick = { nc.navigate(Screen.Logs) })
}
// -- advanced
Expand Down

0 comments on commit 3f9d14f

Please sign in to comment.