change default value

This commit is contained in:
2026-06-12 13:05:42 +05:30
parent 801663356e
commit c43f41d98a

View File

@@ -42,7 +42,7 @@ export default function UploadPage() {
// Form states
const [file, setFile] = useState<File | null>(null);
const [jsonFile, setJsonFile] = useState<File | null>(null);
const [selectMethod, setSelectMethod] = useState('combined');
const [selectMethod, setSelectMethod] = useState('yolo');
// Upload states
const [uploading, setUploading] = useState(false);