diff --git a/apps/flipcash/features/menu/src/main/kotlin/com/flipcash/app/menu/internal/ProfileTutorial.kt b/apps/flipcash/features/menu/src/main/kotlin/com/flipcash/app/menu/internal/ProfileTutorial.kt index 7a4bee1ce..c8f2e6d1d 100644 --- a/apps/flipcash/features/menu/src/main/kotlin/com/flipcash/app/menu/internal/ProfileTutorial.kt +++ b/apps/flipcash/features/menu/src/main/kotlin/com/flipcash/app/menu/internal/ProfileTutorial.kt @@ -4,7 +4,7 @@ import com.flipcash.app.core.ui.onboarding.TutorialItem import com.flipcash.services.models.UserProfile /** - * The "Finish Your Profile" checklist for the "You" tab (node 9544:18140). + * The "Finish Your Profile" checklist for the "You" tab. * * Null while the profile is unresolved, so the card is never drawn against a guess — an account * that already has a photo would otherwise flash an outstanding step on the way in. Null again once diff --git a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryScreen.kt b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryScreen.kt index c498421a1..3226c9563 100644 --- a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryScreen.kt +++ b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryScreen.kt @@ -16,8 +16,8 @@ import kotlinx.coroutines.flow.launchIn import kotlinx.coroutines.flow.onEach /** - * Minimum-tip entry (nodes 9541:10951, 9553:113170). Leaving without saving discards the entry — - * there is no draft to keep, so a changed-but-abandoned amount just doesn't reach the profile. + * Minimum-tip entry. Leaving without saving discards the entry — there is no draft to keep, so a + * changed-but-abandoned amount just doesn't reach the profile. * * @param isLastStep whether the flow ends here, which is the only thing that decides between * "Save" and "Next". diff --git a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt index 0d627365b..8597410f6 100644 --- a/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt +++ b/apps/flipcash/features/user-profile/src/main/kotlin/com/flipcash/app/userprofile/internal/mintip/MinimumTipEntryViewModel.kt @@ -33,8 +33,8 @@ import javax.inject.Inject import kotlin.math.abs /** - * Backs the minimum-tip entry screen (nodes 9541:10951, 9553:113170) — the fee another user has to - * pay to open a DM, which the profile carries as `minDmChatInitFee`. + * Backs the minimum-tip entry screen — the fee another user has to pay to open a DM, which the + * profile carries as `minDmChatInitFee`. * * Two things separate it from the send-side tip entry: there is no ceiling, since a user can ask * for any amount regardless of what anyone can afford, so the preset minimum is the only bound and @@ -151,7 +151,9 @@ internal class MinimumTipEntryViewModel @Inject constructor( val min = minimumAmount.value if (min != null && amount.valueLessThan(min)) { - BottomBarManager.showAlert( + // Info, not alert: nothing has gone wrong and nothing is being destroyed — + // the entry is just under the floor and needs raising. + BottomBarManager.showInfo( title = resources.getString(R.string.error_title_minimumTip, min.formatted()), message = resources.getString(R.string.error_description_minimumTip), )