From be3bade53d49e912c2bbe44e704703bab1cf1dee Mon Sep 17 00:00:00 2001 From: Nico <60229704+Marchand-Nicolas@users.noreply.github.com> Date: Sun, 13 Oct 2024 20:47:41 +0200 Subject: [PATCH] fix build --- components/discover/claimModal.tsx | 1 - types/frontTypes.d.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/components/discover/claimModal.tsx b/components/discover/claimModal.tsx index b3fe84d5..1651ea7d 100644 --- a/components/discover/claimModal.tsx +++ b/components/discover/claimModal.tsx @@ -14,7 +14,6 @@ import { useAccount, useContractWrite } from "@starknet-react/core"; import { RewardsPerProtocol } from "../../types/backTypes"; import { getRewards } from "@services/apiService"; import { gweiToEth } from "@utils/feltService"; -import { Call } from "../../types/frontTypes"; type RewardItem = { appName: string; diff --git a/types/frontTypes.d.ts b/types/frontTypes.d.ts index 8c4788e9..25492fa8 100644 --- a/types/frontTypes.d.ts +++ b/types/frontTypes.d.ts @@ -342,7 +342,7 @@ type TaskType = type networks = "MAINNET" | "TESTNET"; -export type Call = { +type Call = { contractAddress: string; calldata: string[]; entrypoint: string;