Skip to content

Commit

Permalink
feat: rename liquidity page to node (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz authored Jul 5, 2024
1 parent 64e734f commit e5b5f58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/layouts/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {
Cable,
EllipsisVertical,
ExternalLinkIcon,
FlaskRound,
Home,
Lock,
Megaphone,
Expand All @@ -15,6 +14,7 @@ import {
Wallet,
} from "lucide-react";

import { CubeIcon } from "@radix-ui/react-icons";
import React from "react";
import {
Link,
Expand Down Expand Up @@ -142,8 +142,8 @@ export default function AppLayout() {
<nav className="grid items-start p-2 text-sm font-medium lg:px-4">
{hasChannelManagement && (
<MenuItem to="/channels">
<FlaskRound className="h-4 w-4" />
Liquidity
<CubeIcon className="h-4 w-4" />
Node
</MenuItem>
)}
<MenuItem to="/settings">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const routes = [
{
path: "channels",
element: <DefaultRedirect />,
handle: { crumb: () => "Liquidity" },
handle: { crumb: () => "Node" },
children: [
{
index: true,
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/screens/channels/Channels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ export default function Channels() {
return (
<>
<AppHeader
title="Liquidity"
description="Manage your lightning node liquidity"
title="Node"
description="Manage your lightning node"
contentRight={
<div className="flex gap-3 items-center justify-center">
<DropdownMenu>
Expand Down

0 comments on commit e5b5f58

Please sign in to comment.