Skip to content

Commit

Permalink
Fix button keys
Browse files Browse the repository at this point in the history
  • Loading branch information
wingio committed Sep 5, 2023
1 parent adc43b1 commit 414b0a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class AccountSettingsScreen : Screen {
)
}
item(
key = { "Add/Sign all out" }
key = "Add/Sign all out"
) {
SettingsButton(
label = stringResource(if (viewModel.isEditMode) Res.strings.action_sign_out_all else Res.strings.action_add_account),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ fun AccountSwitcherSheet(
)
}
item(
key = { "Add account" }
key = "Add account"
) {
SettingsButton(
label = stringResource(Res.strings.action_add_account),
Expand Down

0 comments on commit 414b0a7

Please sign in to comment.