@ -44,7 +44,7 @@ class AppState {
AuthenticatedUser? _authenticatedRootUser;
AuthenticatedUser? _authenticatedChildUser;
bool isPaytabsEnabled = false;
bool isPaytabsEnabled = true;
int? _superUserID;
bool isChildLoggedIn = false;
@ -1179,7 +1179,7 @@ class _LandingPageState extends State<LandingPage> {
},
backgroundColor: AppColors.warningColorYellow.withValues(alpha: 0.20),
textColor: AppColors.alertColor,
borderColor: AppColors.infoBannerBgColor,
borderColor: AppColors.warningColorYellow.withValues(alpha: 0.01),
fontSize: 12.f,
fontWeight: FontWeight.w600,
borderRadius: 12.r,
@ -78,7 +78,8 @@ class _TriagePageState extends State<TriagePage> {
}
// Case 2: Should stop flag is true OR Case 3: Probability >= 70% OR Case 4: 7 or more questions answered
if (highestProbability >= 70.0 || viewModel.triageQuestionCount >= 30) {
// if (highestProbability >= 70.0 || viewModel.triageQuestionCount >= 30) {
if (highestProbability >= 70.0 || viewModel.triageQuestionCount >= 30 || viewModel.shouldStopTriage) {
// Navigate to results/possible conditions screen
context.navigateWithName(AppRoutes.possibleConditionsPage);
return;