fix: restore missing switch-profiles row in Settings hub

The action, i18n strings, and app-level routing to ProfileList already
existed, but no row in the Settings hub ever called onSwitchProfiles,
so there was no way to reach it from the UI.
This commit is contained in:
KhooLy 2026-07-28 01:16:04 +03:00
parent 72f5010294
commit cb22014f82

View file

@ -350,6 +350,10 @@ private fun SettingsHubContent(
modifier = Modifier.size(20.dp)
)
}
SettingsNavRow(
AppStrings.t(lang, "settings.switch_profiles"),
icon = Icons.Filled.AccountCircle
) { onSwitchProfiles() }
}
SettingsSectionHeader(AppStrings.t(lang, "settings.section_preferences"))