Skip to content

Commit 62f9fc4

Browse files
committed
[MNY-163] Portal: Fix broken links in payments sidebar
1 parent a9c388a commit 62f9fc4

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

apps/portal/src/app/bridge/sidebar.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ExternalLinkIcon, ZapIcon } from "lucide-react";
1+
import { ZapIcon } from "lucide-react";
22
import type { SideBar } from "@/components/Layouts/DocLayout";
33
import { EngineIcon, ReactIcon, TypeScriptIcon, UnityIcon } from "@/icons";
44
import { UnrealEngineIcon } from "../../icons/sdks/UnrealEngineIcon";
@@ -12,11 +12,6 @@ export const sidebar: SideBar = {
1212
name: "Get Started",
1313
icon: <ZapIcon />,
1414
},
15-
{
16-
href: "https://playground.thirdweb.com/",
17-
icon: <ExternalLinkIcon />,
18-
name: "Playground",
19-
},
2015
{ separator: true },
2116
{
2217
isCollapsible: false,

apps/portal/src/app/payments/sidebar.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const sidebar: SideBar = {
1313
icon: <ZapIcon />,
1414
},
1515
{
16-
href: "https://playground.thirdweb.com/",
16+
href: "https://playground.thirdweb.com/payments",
1717
icon: <ExternalLinkIcon />,
1818
name: "Playground",
1919
},
@@ -38,19 +38,19 @@ export const sidebar: SideBar = {
3838
name: "Send a Payment",
3939
},
4040
{
41-
href: `bridge/sell`,
41+
href: `/bridge/sell`,
4242
name: "Sell Tokens",
4343
},
4444
{
45-
href: `bridge/swap`,
45+
href: `/bridge/swap`,
4646
name: "Swap Tokens",
4747
},
4848
{
49-
href: `bridge/tokens`,
49+
href: `/bridge/tokens`,
5050
name: "Get Token Prices",
5151
},
5252
{
53-
href: `bridge/routes`,
53+
href: `/bridge/routes`,
5454
name: "Get Routes",
5555
},
5656
{

0 commit comments

Comments
 (0)