From a010981c3d4999623f2b99a90fa05beb1df8d8ab Mon Sep 17 00:00:00 2001 From: Indigo Tang Date: Sun, 6 Jul 2025 12:30:08 +0000 Subject: [PATCH] I see this error with the app, reported by NextJS, please fix it. The er --- src/app/[locale]/admin/users/edit/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/[locale]/admin/users/edit/[id]/page.tsx b/src/app/[locale]/admin/users/edit/[id]/page.tsx index 70b4f0f..34928d0 100644 --- a/src/app/[locale]/admin/users/edit/[id]/page.tsx +++ b/src/app/[locale]/admin/users/edit/[id]/page.tsx @@ -1,6 +1,6 @@ import { getUserById } from '@/data/operations'; -import UserForm from '../UserForm'; +import UserForm from '../../UserForm'; import { getI18n } from '@/locales/server'; import type { Locale } from '@/locales/server'; import Link from 'next/link';