fix: correct import path for products registry (v2)
- 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)
This commit is contained in:
parent
b2732bcb99
commit
6001b34656
@ -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<{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user