Skip to content

Commit 844c80c

Browse files
fix details page
1 parent 7e59935 commit 844c80c

File tree

3 files changed

+3
-25
lines changed

3 files changed

+3
-25
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/analytics/tx-table/tx-table-ui.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export function TransactionsTableUI(props: {
203203
);
204204
}
205205

206-
const statusDetails = {
206+
export const statusDetails = {
207207
QUEUED: {
208208
name: "Queued",
209209
type: "warning",

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/tx/[id]/transaction-details-ui.tsx

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,9 @@ import { ExternalLinkIcon, InfoIcon } from "lucide-react";
1515
import Link from "next/link";
1616
import { toEther } from "thirdweb";
1717
import { ChainIconClient } from "../../../../../../../../../components/icons/ChainIcon";
18+
import { statusDetails } from "../../analytics/tx-table/tx-table-ui";
1819
import type { Transaction } from "../../analytics/tx-table/types";
1920

20-
const statusDetails = {
21-
QUEUED: {
22-
name: "Queued",
23-
type: "warning",
24-
},
25-
SUBMITTED: {
26-
name: "Submitted",
27-
type: "warning",
28-
},
29-
CONFIRMED: {
30-
name: "Confirmed",
31-
type: "success",
32-
},
33-
REVERTED: {
34-
name: "Reverted",
35-
type: "destructive",
36-
},
37-
} as const;
38-
3921
export function TransactionDetailsUI({
4022
transaction,
4123
}: {

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/dedicated/(general)/layout.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,7 @@ function EngineLegacyBannerUI(props: {
9494
</ul>
9595
<div className="h-4" />
9696
<div className="flex justify-end gap-2">
97-
{/* TODO (cloud): add link to Engine Cloud blog post */}
98-
<Link
99-
href={"https://portal.thirdweb.com/engine/cloud"}
100-
target="_blank"
101-
>
97+
<Link href={"https://portal.thirdweb.com/engine/v3"} target="_blank">
10298
<Button variant="outline">Learn More</Button>
10399
</Link>
104100
<Link

0 commit comments

Comments
 (0)