Skip to content

Commit 398e3ae

Browse files
fix build
1 parent 3ee95db commit 398e3ae

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/server-wallets/components/create-server-wallet.client.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Input } from "@/components/ui/input";
1212
import { useDashboardRouter } from "@/lib/DashboardRouter";
1313
import { useMutation } from "@tanstack/react-query";
1414
import { createEoa } from "@thirdweb-dev/vault-sdk";
15-
import { Loader2, WalletIcon } from "lucide-react";
15+
import { Loader2Icon, WalletIcon } from "lucide-react";
1616
import { useState } from "react";
1717
import { toast } from "sonner";
1818
import { engineCloudProxy } from "../../../../../../../../../@/actions/proxies";
@@ -120,7 +120,7 @@ export default function CreateServerWallet(props: {
120120
className="flex flex-row items-center gap-2"
121121
>
122122
{isLoading ? (
123-
<Loader2 className="animate-spin" />
123+
<Loader2Icon className="size-4 animate-spin" />
124124
) : (
125125
<WalletIcon className="size-4" />
126126
)}
@@ -164,7 +164,7 @@ export default function CreateServerWallet(props: {
164164
>
165165
{isLoading ? (
166166
<>
167-
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
167+
<Loader2Icon className="mr-2 size-4 animate-spin" />
168168
Creating...
169169
</>
170170
) : (

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/tx/[id]/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ChevronLeft } from "lucide-react";
1+
import { ChevronLeftIcon } from "lucide-react";
22
import Link from "next/link";
33

44
export default function TransactionLayout({
@@ -15,7 +15,7 @@ export default function TransactionLayout({
1515
href={`/team/${params.team_slug}/${params.project_slug}/engine/cloud`}
1616
className="flex items-center gap-1 text-muted-foreground text-sm hover:text-foreground"
1717
>
18-
<ChevronLeft className="h-4 w-4" />
18+
<ChevronLeftIcon className="size-4" />
1919
Back to Transactions
2020
</Link>
2121
</div>

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/vault/components/list-access-tokens.client.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,9 @@ export default function ListAccessTokens(props: {
259259
}
260260
>
261261
{deletingTokenId === token.id ? (
262-
<Loader2 className="h-4 w-4 animate-spin" />
262+
<Loader2Icon className="size-4 animate-spin" />
263263
) : (
264-
<Trash2Icon className="h-4 w-4" />
264+
<Trash2Icon className="size-4" />
265265
)}
266266
</Button>
267267
</div>

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/vault/components/rotate-admin-key.client.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
CheckIcon,
2222
CircleAlertIcon,
2323
DownloadIcon,
24-
Loader2,
24+
Loader2Icon,
2525
RefreshCcwIcon,
2626
} from "lucide-react";
2727
import { useState } from "react";
@@ -150,7 +150,7 @@ export default function RotateAdminKeyButton(props: { project: Project }) {
150150
disabled={isLoading}
151151
className="h-auto gap-2 rounded-lg bg-background px-4 py-3"
152152
>
153-
{isLoading && <Loader2 className="animate-spin" />}
153+
{isLoading && <Loader2Icon className="size-4 animate-spin" />}
154154
{!isLoading && <RefreshCcwIcon className="size-4" />}
155155
Rotate Admin Key
156156
</Button>
@@ -309,7 +309,7 @@ export default function RotateAdminKeyButton(props: { project: Project }) {
309309
>
310310
{rotateAdminKeyMutation.isPending ? (
311311
<>
312-
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
312+
<Loader2Icon className="mr-2 size-4 animate-spin" />
313313
Rotating...
314314
</>
315315
) : (

packages/thirdweb/.size-limit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "thirdweb (esm)",
44
"path": "./dist/esm/exports/thirdweb.js",
5-
"limit": "53 kB",
5+
"limit": "60 kB",
66
"import": "*"
77
},
88
{

packages/thirdweb/src/utils/domain.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ describe("Thirdweb Domains", () => {
1616
bundler: "bundler.thirdweb.com",
1717
analytics: "c.thirdweb.com",
1818
insight: "insight.thirdweb.com",
19+
engineCloud: "engine.thirdweb.com",
1920
};
2021

2122
beforeEach(() => {

0 commit comments

Comments
 (0)