From c3dbeefbb514fcf2fccc3de0651ee56147247cc0 Mon Sep 17 00:00:00 2001 From: im-adithya Date: Wed, 6 May 2026 12:32:45 +0530 Subject: [PATCH] fix: replace highlighted dropdown links with menu actions --- frontend/src/components/WalletActionsMenu.tsx | 40 ++++++++----------- frontend/src/screens/apps/AppDetails.tsx | 18 ++++----- 2 files changed, 26 insertions(+), 32 deletions(-) diff --git a/frontend/src/components/WalletActionsMenu.tsx b/frontend/src/components/WalletActionsMenu.tsx index a7e264e3..305268ea 100644 --- a/frontend/src/components/WalletActionsMenu.tsx +++ b/frontend/src/components/WalletActionsMenu.tsx @@ -5,8 +5,7 @@ import { DownloadIcon, EllipsisVerticalIcon, } from "lucide-react"; -import { Link } from "react-router"; -import ExternalLink from "src/components/ExternalLink"; +import { useNavigate } from "react-router"; import { Button } from "src/components/ui/button"; import { DropdownMenu, @@ -16,6 +15,7 @@ import { DropdownMenuTrigger, } from "src/components/ui/dropdown-menu"; import { ProDropdownMenuItem } from "src/components/UpgradeDialog"; +import { openLink } from "src/utils/openLink"; import { handleExportTransactions } from "./transactions-utils"; export function WalletActionsMenu({ @@ -23,6 +23,8 @@ export function WalletActionsMenu({ }: { hasChannelManagement: boolean; }) { + const navigate = useNavigate(); + return (