From 62804781af635372b4fbb75cc6dbd0869cd4bd85 Mon Sep 17 00:00:00 2001 From: 0xKurt Date: Thu, 2 May 2024 19:05:40 +0200 Subject: [PATCH] fix typecheck --- .../round-manager/src/features/round/ViewRoundSettings.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/round-manager/src/features/round/ViewRoundSettings.tsx b/packages/round-manager/src/features/round/ViewRoundSettings.tsx index ebb7c8958f..daa3697621 100644 --- a/packages/round-manager/src/features/round/ViewRoundSettings.tsx +++ b/packages/round-manager/src/features/round/ViewRoundSettings.tsx @@ -38,7 +38,7 @@ import { useRoundById } from "../../context/round/RoundContext"; import { useUpdateRound } from "../../context/round/UpdateRoundContext"; import { getPayoutTokenOptions, payoutTokens } from "../api/payoutTokens"; import { ProgressStatus, ProgressStep, Round } from "../api/types"; -import { CHAINS, SupportType, isInfiniteDate } from "../api/utils"; +import { CHAINS, SupportType } from "../api/utils"; import ConfirmationModal from "../common/ConfirmationModal"; import ErrorModal from "../common/ErrorModal"; import FormValidationErrorList from "../common/FormValidationErrorList"; @@ -56,6 +56,7 @@ import { ethers } from "ethers"; import { getConfig } from "common/src/config"; import { zeroAddress } from "viem"; import { NATIVE } from "common/dist/allo/common"; +import { isInfiniteDate } from "common/src/allo/common"; type EditMode = { canEdit: boolean;