From a15c98eb06db0e202a178d5145f59a95d91b18b2 Mon Sep 17 00:00:00 2001 From: RockChinQ Date: Sun, 21 Jun 2026 12:59:13 -0400 Subject: [PATCH] fix(web): point plugin help links to working docs URL The in-product plugin/add-extension help links went through link.langbot.app/{lang}/docs/plugins, which now 404s (it resolved to the removed /usage/plugin/plugin-intro path). Point them directly at the current docs page docs.langbot.app/{lang}/plugin/plugin-intro (verified 200 for zh/en/ja). --- .../components/home-sidebar/sidbarConfigList.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx b/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx index 8f12c5d0f..d78a82d41 100644 --- a/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx +++ b/web/src/app/home/components/home-sidebar/sidbarConfigList.tsx @@ -89,9 +89,9 @@ export const sidebarConfigList = [ route: '/home/extensions', description: t('plugins.description'), helpLink: { - en_US: 'https://link.langbot.app/en/docs/plugins', - zh_Hans: 'https://link.langbot.app/zh/docs/plugins', - ja_JP: 'https://link.langbot.app/ja/docs/plugins', + en_US: 'https://docs.langbot.app/en/plugin/plugin-intro', + zh_Hans: 'https://docs.langbot.app/zh/plugin/plugin-intro', + ja_JP: 'https://docs.langbot.app/ja/plugin/plugin-intro', }, section: 'extensions', }), @@ -102,9 +102,9 @@ export const sidebarConfigList = [ route: '/home/add-extension', description: t('plugins.description'), helpLink: { - en_US: 'https://link.langbot.app/en/docs/plugins', - zh_Hans: 'https://link.langbot.app/zh/docs/plugins', - ja_JP: 'https://link.langbot.app/ja/docs/plugins', + en_US: 'https://docs.langbot.app/en/plugin/plugin-intro', + zh_Hans: 'https://docs.langbot.app/zh/plugin/plugin-intro', + ja_JP: 'https://docs.langbot.app/ja/plugin/plugin-intro', }, section: 'extensions', }),