diff --git a/apps/web/src/app/dashboard/collections/[id]/page.tsx b/apps/web/src/app/dashboard/collections/[id]/page.tsx index 2c7e536..8eeb86e 100644 --- a/apps/web/src/app/dashboard/collections/[id]/page.tsx +++ b/apps/web/src/app/dashboard/collections/[id]/page.tsx @@ -127,9 +127,12 @@ export default function CollectionDetailPage(): React.ReactElement { newParams.set('tab', newTab); } const queryString = newParams.toString(); - router.replace(`/dashboard/collections/${collectionId}${queryString ? `?${queryString}` : ''}`, { - scroll: false, - }); + router.replace( + `/dashboard/collections/${collectionId}${queryString ? `?${queryString}` : ''}`, + { + scroll: false, + } + ); }; const fetchCollection = useCallback(async () => { @@ -385,7 +388,11 @@ export default function CollectionDetailPage(): React.ReactElement { const tabs = [ { id: 'tools' as const, label: 'Tools', count: collection.toolCount }, { id: 'connect' as const, label: 'Connect' }, - { id: 'env-vars' as const, label: 'Env Vars', count: envVarsCount > 0 ? envVarsCount : undefined }, + { + id: 'env-vars' as const, + label: 'Env Vars', + count: envVarsCount > 0 ? envVarsCount : undefined, + }, { id: 'settings' as const, label: 'Settings' }, ]; @@ -416,16 +423,13 @@ export default function CollectionDetailPage(): React.ReactElement { {collection.isPublic ? 'Public' : 'Private'} - {executorConfig?.type === 'custom_url' && Custom Executor} + {executorConfig?.type === 'custom_url' && ( + Custom Executor + )} {/* Tabs */} - + {/* Tools Tab */} {activeTab === 'tools' && ( @@ -449,7 +453,9 @@ export default function CollectionDetailPage(): React.ReactElement { Tool Description Category - {collection.isOwner && Actions} + {collection.isOwner && ( + Actions + )} @@ -523,7 +529,8 @@ export default function CollectionDetailPage(): React.ReactElement {

Set your username to enable MCP

- You need to set a username before you can share this collection as an MCP server. + You need to set a username before you can share this collection as an MCP + server.