Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update label for OTP type input field #71

Merged
merged 1 commit into from
Apr 30, 2024
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 @@ -352,7 +352,7 @@ private fun AdvancedOptions(
modifier = Modifier
.fillMaxSize()
.semantics { testTag = "ItemTypePicker" },
label = stringResource(id = R.string.otp_authentication),
label = stringResource(id = R.string.otp_type),
options = typeOptionsWithStrings.values.toImmutableList(),
selectedOption = viewState.itemData.type.name,
onOptionSelected = { selectedOption ->
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<string name="saving">Saving</string>
<string name="item_saved">Item saved</string>
<string name="information">Information</string>
<string name="otp_authentication">OTP Authentication</string>
<string name="otp_type">OTP type</string>
<string name="verification_codes">Verification codes</string>
<string name="there_are_no_items_that_match_the_search">There are no items that match the search</string>
<string name="back">Back</string>
Expand Down
Loading