diff --git a/explorer-nextjs/src/components/staking/StakeModal.tsx b/explorer-nextjs/src/components/staking/StakeModal.tsx index f72f2278d6..eb0cb69964 100644 --- a/explorer-nextjs/src/components/staking/StakeModal.tsx +++ b/explorer-nextjs/src/components/staking/StakeModal.tsx @@ -44,6 +44,7 @@ const StakeModal = ({ setErrorAmount(undefined); } catch (e) { if (e instanceof Error && "errors" in e) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any const validationError = (e as any).errors; // Explicitly cast if necessary console.error(validationError); setValidated(false);