fix build

This commit is contained in:
Yana
2024-12-17 21:55:04 +07:00
parent b7c64f290f
commit 93c189fcb0
2 changed files with 3 additions and 5 deletions
@@ -37,10 +37,10 @@ export interface IAccountInfo {
balances: IAmountDetails[];
claimable_rewards: IAmountDetails;
delegations: IDelegationDetails[];
operator_rewards: null | any;
operator_rewards?: null | IAmountDetails;
total_delegations: ITotalDetails;
total_value: ITotalDetails;
vesting_account: null | any;
vesting_account?: null | string;
}
export default async function Account({
@@ -1,9 +1,7 @@
"use client";
import type { IAccountInfo } from "@/app/account/[id]/page";
import ExplorerCard from "../cards/ExplorerCard";
import { runTurboTracing } from "next/dist/build/swc/generated-native";
import { AccountBalancesTable } from "../cards/AccountBalancesTable";
import ExplorerCard from "../cards/ExplorerCard";
export interface IAccontStatsRowProps {
type: string;