diff --git a/src/components/DistBuilder.re b/src/components/DistBuilder.re index d8c7b280..3ccedc35 100644 --- a/src/components/DistBuilder.re +++ b/src/components/DistBuilder.re @@ -195,8 +195,9 @@ let make = () => { }) | "RightLimited" => RightLimited({ - xPoint: reform.state.values.xPoint, - excludingProbabilityMass: reform.state.values.excludingProbabilityMass, + xPoint: reform.state.values.xPoint2, + excludingProbabilityMass: + reform.state.values.excludingProbabilityMass2, }) | "LeftAndRightLimited" => LeftAndRightLimited( @@ -315,14 +316,14 @@ let make = () => { @@ -330,21 +331,21 @@ let make = () => { |> E.showIf( E.L.contains( reform.state.values.domainType, - ["LeftLimited", "RightLimited", "LeftAndRightLimited"], + ["LeftLimited", "LeftAndRightLimited"], ), )} {<> @@ -352,7 +353,7 @@ let make = () => { |> E.showIf( E.L.contains( reform.state.values.domainType, - ["LeftAndRightLimited"], + ["RightLimited", "LeftAndRightLimited"], ), )}