From ae45e8f32ed9c1d524c0035f08fc4dddae99fc9e Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Tue, 26 May 2026 20:15:27 -0400 Subject: [PATCH] fix(android): actually wire ProfileCard + PasswordCard into Settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- .../java/com/fabledsword/minstrel/settings/ui/SettingsScreen.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/app/src/main/java/com/fabledsword/minstrel/settings/ui/SettingsScreen.kt b/android/app/src/main/java/com/fabledsword/minstrel/settings/ui/SettingsScreen.kt index 17ffa046..f295919e 100644 --- a/android/app/src/main/java/com/fabledsword/minstrel/settings/ui/SettingsScreen.kt +++ b/android/app/src/main/java/com/fabledsword/minstrel/settings/ui/SettingsScreen.kt @@ -105,6 +105,8 @@ fun SettingsScreen( onClick = { navController.navigate(Admin) }, ) } + ProfileCard() + PasswordCard() AppearanceCard(themeMode = themeMode, onPick = themeVm::setThemeMode) StorageCard() AboutCard()