fix: add force-dynamic to tool detail page to fix scoped package 404s

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ajax Davis 2025-12-29 21:42:26 +10:00
parent fada29ecbe
commit 5f7a9881ea

View file

@ -3,6 +3,8 @@ import type { Metadata } from 'next';
import { notFound } from 'next/navigation';
import { type Tool, ToolDetailClient } from './ToolDetailClient';
export const dynamic = 'force-dynamic';
interface ToolDetailPageProps {
params: Promise<{ slug: string[] }>;
}