diff --git a/packages/round-manager/src/features/round/ViewRoundResults/ViewRoundResults.tsx b/packages/round-manager/src/features/round/ViewRoundResults/ViewRoundResults.tsx index 8d922d0893..ec405c9457 100644 --- a/packages/round-manager/src/features/round/ViewRoundResults/ViewRoundResults.tsx +++ b/packages/round-manager/src/features/round/ViewRoundResults/ViewRoundResults.tsx @@ -33,6 +33,7 @@ import { DistributionMatch } from "data-layer"; import { utils } from "ethers"; import { useContractAmountFunded } from "../FundContract"; import { useApplicationsByRoundId } from "../../common/useApplicationsByRoundId"; +import { set } from "lodash"; type RevisedMatch = { revisedContributionCount: number; @@ -246,6 +247,9 @@ function ViewRoundResults({ "keep" | "scale" >("keep"); + const [isRecommendedDistribution, setIsRecommendedDistribution] = + useState(true); + const { matches, isRevised: areMatchingFundsRevised, @@ -465,62 +469,115 @@ function ViewRoundResults({

Manual Verification

)}
- - + + {({ checked }) => (
- - Recommended - + {sybilDefense === "auto" ? ( +
+ + + Recommended + {" "} + - Upload your own results using the Passport + Model-Based Detection system + result + verification + + + Since you selected frictionless auto-sybil + detection at setup, select this option. Please + use{" "} + + this + + cluster matching template to calculate your + results. + +
+ ) : sybilDefense === "manual" ? ( +
+ + + Recommended + {" "} + - System default quadratic funding calculation + + + Since you selected manual verification with + Passport at setup, select this option to + calculate your round’s final results. + +
+ ) : ( +
+ + + Recommended + {" "} + - System default quadratic funding calculation + + + Since you selected manual verification at setup, + select this option to calculate your round’s + final results. + +
+ )}
)}
- + {({ checked }) => (
- - Upload your own results - + {sybilDefense === "auto" ? ( + + System default quadratic funding calculation + + ) : sybilDefense === "manual" ? ( + + Upload your own results + + ) : ( + + Upload your own results + + )}
)}
-
+

Preview

@@ -713,7 +770,7 @@ function ViewRoundResults({ here