Skip to content

Commit b76062c

Browse files
fix: build issue
1 parent 04b1e03 commit b76062c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

packages/round-manager/src/features/round/ViewRoundResults/ViewRoundResults.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
UploadIcon,
99
} from "@heroicons/react/solid";
1010
import { useDropzone } from "react-dropzone";
11-
import { classNames, isGG20Round, getPayoutTokens, TToken } from "common";
11+
import { classNames, getPayoutTokens, TToken } from "common";
1212
import { Button } from "common/src/styles";
1313
import { useDebugMode, useRoundMatchingFunds } from "../../../hooks";
1414
import {
@@ -384,9 +384,8 @@ function ViewRoundResults({
384384

385385
const disableRoundSaturationControls = Math.round(roundSaturation) >= 100;
386386

387-
const sybilDefense = isGG20Round(round.id, chain.id)
388-
? "passport-mbds"
389-
: round.roundMetadata?.quadraticFundingConfig?.sybilDefense;
387+
const sybilDefense =
388+
round.roundMetadata?.quadraticFundingConfig?.sybilDefense;
390389

391390
const isCustomResults =
392391
(sybilDefense === "passport-mbds" && isRecommendedDistribution) ||

0 commit comments

Comments
 (0)