Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/playground-web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default async function RootLayout({
}: {
children: React.ReactNode;
}) {
const sidebarLinks = await getSidebarLinks();
const sidebarLinks = getSidebarLinks();
return (
<html lang="en" suppressHydrationWarning>
<head>
Expand Down
4 changes: 2 additions & 2 deletions apps/playground-web/src/app/navLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { insightBlueprints } from "./insight/insightBlueprints";

const staticSidebarLinks: SidebarLink[] = [
{
name: "Connect",
name: "Wallets",
isCollapsible: false,
links: [
{
Expand Down Expand Up @@ -113,7 +113,7 @@ const universalBridgeSidebarLinks: SidebarLink = {
};

const engineSidebarLinks: SidebarLink = {
name: "Engine",
name: "Transactions",
isCollapsible: false,
expanded: false,
links: [
Expand Down
Loading