Skip to content

Commit

Permalink
Update website/src/components/Submission/DataUploadForm.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Chaoran Chen <[email protected]>
  • Loading branch information
fhennig and chaoran-chen authored Jan 16, 2025
1 parent 2aff3cf commit 983548b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/Submission/DataUploadForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const InnerDataUploadForm = ({
metadataTemplateFields,
}: DataUploadFormProps) => {
const [metadataFile, setMetadataFile] = useState<ProcessedFile | null>(null);
// can be null; if null -> don't apply mapping.
// The columnMapping can be null; if null -> don't apply mapping.
const [columnMapping, setColumnMapping] = useState<ColumnMapping | null>(null);
const [sequenceFile, setSequenceFile] = useState<ProcessedFile | null>(null);
const [exampleEntries, setExampleEntries] = useState<number | undefined>(10);
Expand Down

0 comments on commit 983548b

Please sign in to comment.