From a35872a1fcd1d5e9903e524505a729ea7b04c976 Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Mon, 27 Jul 2026 13:59:21 -0400 Subject: [PATCH] chore(tips): remove profile photo from tip card setup for now Signed-off-by: Brandon McAnsh --- .../com/flipcash/app/tipping/internal/TipFlowViewModel.kt | 2 +- .../com/flipcash/app/tipping/internal/screens/TipInfoScreen.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/TipFlowViewModel.kt b/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/TipFlowViewModel.kt index d2c8e7adb..3fe06a7d3 100644 --- a/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/TipFlowViewModel.kt +++ b/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/TipFlowViewModel.kt @@ -64,7 +64,7 @@ internal class TipFlowViewModel @Inject constructor( stateFlow.map { it.resumed }.distinctUntilChanged(), ) { profile, resumed -> buildList { - val hasProfile = profile?.displayName != null && profile.profilePicture != null + val hasProfile = profile?.displayName != null // TODO: explicitly not required right now && profile.profilePicture != null when { // Post-setup handoff: land on TipCard alone, with a close affordance. No Tips // underneath — closing exits, and reopening from home lands on the Tips list. diff --git a/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/screens/TipInfoScreen.kt b/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/screens/TipInfoScreen.kt index d69398290..6cdf82d1e 100644 --- a/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/screens/TipInfoScreen.kt +++ b/apps/flipcash/features/tipping/src/main/kotlin/com/flipcash/app/tipping/internal/screens/TipInfoScreen.kt @@ -58,7 +58,7 @@ internal fun TipInfoScreen() { AppRoute.UpdateUserProfile( origin = AppRoute.Sheets.Tips(), includeName = userManager?.profile?.displayName.isNullOrEmpty(), - includePhoto = userManager?.profile?.profilePicture == null, + includePhoto = false, // explicity false for now target = AppRoute.Sheets.Tips(resumed = true), ) )