fix: correct import path for products registry module
- Fix import path in src/app/[slug]/page.tsx - Changed from '../../../../modules/products/registry' to '../../../modules/products/registry' - Resolves Module not found error 🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
parent
3148c42619
commit
979e83f1f9
@ -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