Skip to content

Commit

Permalink
fix: frictionless success metric fix (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanskar2001 authored Aug 9, 2024
1 parent d18b4d1 commit d5afd14
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ let getStatData = (
title: "Frictionless Success Rate",
tooltipText: "Total number of payments authenticated over a frictionless flow successfully over the total number of payments going through a frictionless flow.",
deltaTooltipComponent: _ => React.null,
value: singleStatData.challenge_success_count->Int.toFloat *.
value: singleStatData.frictionless_success_count->Int.toFloat *.
100. /.
singleStatData.challenge_flow_count->Int.toFloat,
singleStatData.frictionless_flow_count->Int.toFloat,
delta: 0.0,
data: constructData(FrictionlessSuccessRate, timeSeriesData),
statType: "Rate",
Expand Down

0 comments on commit d5afd14

Please sign in to comment.