From d44a40c186328fd836233abac04ea6fa782b6e0b Mon Sep 17 00:00:00 2001 From: Yana Date: Fri, 24 Jan 2025 09:35:26 +0200 Subject: [PATCH] fix build --- explorer-nextjs/src/components/staking/SubHeaderRow.tsx | 1 - explorer-nextjs/src/components/staking/SubHeaderRowActions.tsx | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer-nextjs/src/components/staking/SubHeaderRow.tsx b/explorer-nextjs/src/components/staking/SubHeaderRow.tsx index b90731f4bc..01be6d4490 100644 --- a/explorer-nextjs/src/components/staking/SubHeaderRow.tsx +++ b/explorer-nextjs/src/components/staking/SubHeaderRow.tsx @@ -1,7 +1,6 @@ import NextEpochTime from "@/components/epochtime/EpochTime"; import Grid2 from "@mui/material/Grid2"; import SubHeaderRowActions from "./SubHeaderRowActions"; -// import { QueryProvider } from "../../providers/QueryProvider"; const SubHeaderRow = () => { return ( diff --git a/explorer-nextjs/src/components/staking/SubHeaderRowActions.tsx b/explorer-nextjs/src/components/staking/SubHeaderRowActions.tsx index 68ac0ca0b9..311084faed 100644 --- a/explorer-nextjs/src/components/staking/SubHeaderRowActions.tsx +++ b/explorer-nextjs/src/components/staking/SubHeaderRowActions.tsx @@ -18,6 +18,7 @@ const fee = { gas: "1000000", amount: [{ amount: "1000000", denom: "unym" }] }; // Fetch delegations const fetchDelegations = async ( address: string, + // eslint-disable-next-line @typescript-eslint/no-explicit-any nymClient: any, ): Promise => { const data = await nymClient.getDelegatorDelegations({ delegator: address });