Skip to content

Commit 07c9a54

Browse files
fix build
1 parent ee93aab commit 07c9a54

File tree

2 files changed

+4
-210
lines changed

2 files changed

+4
-210
lines changed

apps/dashboard/src/app/team/[team_slug]/[project_slug]/engine/server-wallets/components/send-dummy-tx.client.tsx

Lines changed: 0 additions & 207 deletions
This file was deleted.

apps/dashboard/src/app/team/[team_slug]/[project_slug]/engine/server-wallets/wallet-table/wallet-table-ui.client.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import type { Project } from "@/api/projects";
44
import { WalletAddress } from "@/components/blocks/wallet-address";
5+
import { Spinner } from "@/components/ui/Spinner/Spinner";
56
import {
67
Table,
78
TableBody,
@@ -12,18 +13,18 @@ import {
1213
TableRow,
1314
} from "@/components/ui/table";
1415
import { ToolTipLabel } from "@/components/ui/tooltip";
16+
import { getThirdwebClient } from "@/constants/thirdweb.server";
1517
import { useQuery } from "@tanstack/react-query";
1618
import { formatDistanceToNowStrict } from "date-fns";
1719
import { format } from "date-fns/format";
1820
import {
1921
DEFAULT_ACCOUNT_FACTORY_V0_7,
2022
predictSmartAccountAddress,
2123
} from "thirdweb/wallets/smart";
22-
import { Spinner } from "../../../../../../../@/components/ui/Spinner/Spinner";
23-
import { getThirdwebClient } from "../../../../../../../@/constants/thirdweb.server";
2424
import { useV5DashboardChain } from "../../../../../../../lib/v5-adapter";
2525
import CreateServerWallet from "../components/create-server-wallet.client";
2626
import type { Wallet } from "./types";
27+
2728
export function ServerWalletsTableUI({
2829
wallets,
2930
project,
@@ -102,7 +103,7 @@ function SmartAccountCell({ wallet }: { wallet: Wallet }) {
102103
queryKey: ["smart-account-address", wallet.address],
103104
queryFn: async () => {
104105
const smartAccountAddress = await predictSmartAccountAddress({
105-
client: getThirdwebClient(),
106+
client: getThirdwebClient(undefined),
106107
adminAddress: wallet.address,
107108
chain,
108109
factoryAddress: DEFAULT_ACCOUNT_FACTORY_V0_7,

0 commit comments

Comments
 (0)