Skip to content

Commit b8fcfbe

Browse files
committed
Changes from background composer bc-5dce9707-61da-45ff-b76e-9f17ae114c39
1 parent f3234c3 commit b8fcfbe

File tree

100 files changed

+153
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+153
-97
lines changed

CHANGES_SUMMARY.md

Lines changed: 32 additions & 0 deletions

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function TransactionsLayout(props: {
5353
</Link>
5454
</div>
5555
</div>
56-
<Link href={`${projectLayoutPath}/engine/dedicated`}>
56+
<Link href={`${projectLayoutPath}/transactions/dedicated`}>
5757
<Button variant="outline">View Dedicated Engine</Button>
5858
</Link>
5959
</div>

apps/playground-web/src/app/navLinks.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,20 +112,20 @@ const universalBridgeSidebarLinks: SidebarLink = {
112112
name: "Universal Bridge",
113113
};
114114

115-
const engineSidebarLinks: SidebarLink = {
115+
const transactionsSidebarLinks: SidebarLink = {
116116
expanded: false,
117117
isCollapsible: false,
118118
links: [
119119
{
120-
href: "/engine/airdrop",
120+
href: "/transactions/airdrop",
121121
name: "Airdrop",
122122
},
123123
{
124-
href: "/engine/minting",
124+
href: "/transactions/minting",
125125
name: "Mint NFTs",
126126
},
127127
{
128-
href: "/engine/webhooks",
128+
href: "/transactions/webhooks",
129129
name: "Webhooks",
130130
},
131131
],
@@ -150,7 +150,7 @@ export function getSidebarLinks() {
150150
const sidebarLinks: SidebarLink[] = [
151151
...staticSidebarLinks,
152152
universalBridgeSidebarLinks,
153-
engineSidebarLinks,
153+
transactionsSidebarLinks,
154154
{
155155
expanded: false,
156156
isCollapsible: false,

apps/playground-web/src/app/engine/airdrop/page.tsx renamed to apps/playground-web/src/app/transactions/airdrop/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { EngineAirdropPreview } from "@/app/engine/airdrop/_components/airdrop-preview";
1+
import { EngineAirdropPreview } from "@/app/transactions/airdrop/_components/airdrop-preview";
22
import ThirdwebProvider from "@/components/thirdweb-provider";
33
import { PageLayout } from "../../../components/blocks/APIHeader";
44
import { AirdropCode } from "./_components/airdrop-code";

0 commit comments

Comments
 (0)