丁烨烨 4 달 전
부모
커밋
5d68b2d797
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      next-env.d.ts
  2. 1 1
      package.json
  3. 1 1
      src/components/products/ProductGridClient.tsx
  4. 1 1
      tsconfig.json

+ 1 - 1
next-env.d.ts

@@ -1,6 +1,6 @@
 /// <reference types="next" />
 /// <reference types="next/image-types/global" />
-/// <reference path="./.next/types/routes.d.ts" />
+import "./.next/types/routes.d.ts";
 
 // NOTE: This file should not be edited
 // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

+ 1 - 1
package.json

@@ -15,7 +15,7 @@
     "axios": "^1.11.0",
     "framer-motion": "^12.23.19",
     "lucide-react": "^0.542.0",
-    "next": "^15.5.2",
+    "next": "16.1.5",
     "react": "19.1.0",
     "react-dom": "19.1.0",
     "tw-animate-css": "^1.3.8"

+ 1 - 1
src/components/products/ProductGridClient.tsx

@@ -426,7 +426,7 @@ export default function ProductGrid({ products }: ProductGridProps) {
                                         borderRadius: 4,
                                         userSelect: 'none'
                                     }}
-                                    disabled={submitting}
+                                    // disabled={submitting}
                                 />
                             </div>
                         </Form.Item>

+ 1 - 1
tsconfig.json

@@ -15,7 +15,7 @@
     "moduleResolution": "bundler",
     "resolveJsonModule": true,
     "isolatedModules": true,
-    "jsx": "preserve",
+    "jsx": "react-jsx",
     "incremental": true,
     "plugins": [
       {