fix(android): actually wire ProfileCard + PasswordCard into Settings

Previous commit 14c5262 created both cards + their VMs but the
SettingsScreen edit didn't land due to a stale-read error — the
cards existed but weren't called. Adding the two function calls
between the Admin tile and AppearanceCard now.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-26 20:15:27 -04:00
parent 14c5262ed7
commit ae45e8f32e
@@ -105,6 +105,8 @@ fun SettingsScreen(
onClick = { navController.navigate(Admin) },
)
}
ProfileCard()
PasswordCard()
AppearanceCard(themeMode = themeMode, onPick = themeVm::setThemeMode)
StorageCard()
AboutCard()