Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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),
)
)
Expand Down
Loading