From 6ed7d74928fd0e1be421a20c0f00f13a3e1d836e Mon Sep 17 00:00:00 2001 From: plebeius Date: Mon, 23 Feb 2026 14:16:36 +0800 Subject: [PATCH] fix link --- src/views/home/boards-list/boards-list.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/home/boards-list/boards-list.tsx b/src/views/home/boards-list/boards-list.tsx index 9e6d29a6..fdc2af3c 100644 --- a/src/views/home/boards-list/boards-list.tsx +++ b/src/views/home/boards-list/boards-list.tsx @@ -38,7 +38,8 @@ const BoardsList = ({ multisub }: { multisub: DirectoryCommunity[] }) => { const handleLinkClick = (e: React.MouseEvent, address: string) => { e.preventDefault(); const boardPath = getBoardPath(address, directories); - showDisclaimerModal(address, navigate, boardPath); + const targetPath = boardPath + (useCatalogLinks ? '/catalog' : ''); + showDisclaimerModal(address, navigate, targetPath); }; // Helper to generate link URL with optional catalog suffix