Fix CSV upload (#11749)

I inadvertently broke the upload button on the CSV import
This commit is contained in:
Félix Malfait
2025-04-25 17:49:50 +02:00
committed by GitHub
parent 904558e7bb
commit dd446ef441

View File

@ -156,7 +156,7 @@ export const DropZone = ({ onContinue, isLoading }: DropZoneProps) => {
<StyledText>
<Trans>Upload .xlsx, .xls or .csv file</Trans>
</StyledText>
<MainButton onMouseDown={open} title={t`Select file`} />
<MainButton onClick={open} title={t`Select file`} />
</>
)}
</StyledContainer>