From 6001b34656249fecbba70d3bca80d6fcc06bb20f Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Tue, 11 Nov 2025 12:36:30 +0800 Subject: [PATCH] fix: correct import path for products registry (v2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix import path in src/app/[slug]/page.tsx - Changed from '../../../modules/products/registry' to '../../modules/products/registry' - Correct relative path calculation 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- dashboard/src/app/[slug]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/app/[slug]/page.tsx b/dashboard/src/app/[slug]/page.tsx index abc372f..2615616 100644 --- a/dashboard/src/app/[slug]/page.tsx +++ b/dashboard/src/app/[slug]/page.tsx @@ -2,7 +2,7 @@ import type { Metadata } from 'next' import { notFound } from 'next/navigation' import Client from './Client' -import { PRODUCT_MAP, getAllSlugs } from '../../../modules/products/registry' +import { PRODUCT_MAP, getAllSlugs } from '../../modules/products/registry' type PageProps = { params: Promise<{