From c43f41d98adacc3a588e0c5aa4bbd2b5e23d6b36 Mon Sep 17 00:00:00 2001 From: "santasri.pachhal" Date: Fri, 12 Jun 2026 13:05:42 +0530 Subject: [PATCH] change default value --- src/app/(modules)/upload/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(modules)/upload/page.tsx b/src/app/(modules)/upload/page.tsx index 06f6f8f..e54b8bc 100644 --- a/src/app/(modules)/upload/page.tsx +++ b/src/app/(modules)/upload/page.tsx @@ -42,7 +42,7 @@ export default function UploadPage() { // Form states const [file, setFile] = useState(null); const [jsonFile, setJsonFile] = useState(null); - const [selectMethod, setSelectMethod] = useState('combined'); + const [selectMethod, setSelectMethod] = useState('yolo'); // Upload states const [uploading, setUploading] = useState(false);