From 5126c3311399d5a3db64a95d5541097d0583b0de Mon Sep 17 00:00:00 2001 From: Gulshan Yadav Date: Mon, 2 Feb 2026 05:12:01 +0530 Subject: [PATCH] ui/ux --- apps/desktop-wallet/src/components/Layout.tsx | 4 ++-- apps/desktop-wallet/src/pages/Mining/MiningDashboard.tsx | 5 ++--- apps/desktop-wallet/src/pages/Node/NodeDashboard.tsx | 1 - 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/apps/desktop-wallet/src/components/Layout.tsx b/apps/desktop-wallet/src/components/Layout.tsx index 9345f25..fbb7950 100644 --- a/apps/desktop-wallet/src/components/Layout.tsx +++ b/apps/desktop-wallet/src/components/Layout.tsx @@ -9,7 +9,7 @@ import { Wifi, WifiOff, Server, - Pickaxe, + Hammer, } from 'lucide-react'; import { useWalletStore } from '../store/wallet'; import { useNodeStore } from '../store/node'; @@ -24,7 +24,7 @@ const navItems = [ const advancedNavItems = [ { to: '/node', label: 'Node', icon: Server }, - { to: '/mining', label: 'Mining', icon: Pickaxe }, + { to: '/mining', label: 'Mining', icon: Hammer }, { to: '/settings', label: 'Settings', icon: Settings }, ]; diff --git a/apps/desktop-wallet/src/pages/Mining/MiningDashboard.tsx b/apps/desktop-wallet/src/pages/Mining/MiningDashboard.tsx index fbd1fae..0d52707 100644 --- a/apps/desktop-wallet/src/pages/Mining/MiningDashboard.tsx +++ b/apps/desktop-wallet/src/pages/Mining/MiningDashboard.tsx @@ -1,6 +1,6 @@ import { useEffect, useState } from 'react'; import { - Pickaxe, + Hammer, Play, Pause, Square, @@ -17,7 +17,6 @@ import { useWalletStore } from '../../store/wallet'; export default function MiningDashboard() { const { status, - stats, recentBlocks, hashrateHistory, defaultThreads, @@ -131,7 +130,7 @@ export default function MiningDashboard() {

- + Mining

diff --git a/apps/desktop-wallet/src/pages/Node/NodeDashboard.tsx b/apps/desktop-wallet/src/pages/Node/NodeDashboard.tsx index 5588135..9a971e3 100644 --- a/apps/desktop-wallet/src/pages/Node/NodeDashboard.tsx +++ b/apps/desktop-wallet/src/pages/Node/NodeDashboard.tsx @@ -18,7 +18,6 @@ export default function NodeDashboard() { status, syncProgress, peers, - preferredMode, lastExternalUrl, lastNetwork, connectExternal,