android: revert accidental capitalization on toggle label

This commit is contained in:
Kavish Devar
2025-09-26 03:27:32 +05:30
parent ab55096051
commit 56307c98e3

View File

@@ -294,7 +294,7 @@ fun AirPodsSettingsScreen(dev: BluetoothDevice?, service: AirPodsService,
Spacer(modifier = Modifier.height(16.dp))
StyledToggle(
label = stringResource(R.string.off_listening_mode).uppercase(),
label = stringResource(R.string.off_listening_mode),
controlCommandIdentifier = AACPManager.Companion.ControlCommandIdentifiers.ALLOW_OFF_OPTION,
description = stringResource(R.string.off_listening_mode_description)
)