🐛 fix: fixed the discover page categray sider link error (#10282)

fix: fixed the discover page categray sider link error
This commit is contained in:
Shinji-Li
2025-11-18 14:48:52 +08:00
committed by GitHub
parent ceadd61ce3
commit 39e88196d7
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ const Category = memo(() => {
qs.stringifyUrl(
{
query: { category: key === AssistantCategory.All ? null : key, q, source },
url: '/assistant',
url: '/discover/assistant',
},
{ skipNull: true },
);

View File

@@ -25,7 +25,7 @@ const Category = memo(() => {
qs.stringifyUrl(
{
query: { category: key === McpCategory.All ? null : key, q },
url: '/mcp',
url: '/discover/mcp',
},
{ skipNull: true },
);

View File

@@ -24,7 +24,7 @@ const Category = memo(() => {
qs.stringifyUrl(
{
query: { category: key === 'all' ? null : key, q },
url: '/model',
url: '/discover/model',
},
{ skipNull: true },
);