Skip to content

Commit

Permalink
fix(Rv-no-id): Fix error (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
knguyenrise8 authored Jan 13, 2025
1 parent 98f4077 commit 464c7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/ExtractUploadFile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const ExtractUploadFile: React.FC<ExtractUploadFileProps> = ({
if (files.length > 0) {
setUploadedFile([]);
clearFiles();
setHasError(false);
setError(null);
}
setUploadedFile(files);
const filesObj: IFilesObj = { files };
Expand Down

0 comments on commit 464c7b2

Please sign in to comment.