Skip to content

Commit

Permalink
feat(app): also use manual fallback for not tested results
Browse files Browse the repository at this point in the history
  • Loading branch information
tamara-slosarek authored and tamslo committed Feb 27, 2025
1 parent c02fe06 commit 295e7ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/lib/common/models/drug/drug.dart
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ extension DrugExtension on Drug {
).all(
(genotypeResult) =>
genotypeResult != null &&
genotypeResult.phenotypeDisplayString(context) == indeterminateResult
unknownPhenotypes(context).contains(
genotypeResult.phenotypeDisplayString(context)
)
);
if (isCompletelyIndeterminateResult) {
final indeterminateFdaFallbackGuideline = Guideline(
Expand Down

0 comments on commit 295e7ca

Please sign in to comment.