Skip to content

Commit

Permalink
Fix Prettier lint warning (#1016)
Browse files Browse the repository at this point in the history
### Motivation and Context
Fix Prettier lint warning

### Description
Fix Prettier lint warning
  • Loading branch information
glahaye authored Jun 17, 2024
1 parent 1c460df commit d304b60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/components/FileUploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface FileUploaderProps {

const FileUploaderComponent = (
{ acceptedExtensions, onSelectedFile }: FileUploaderProps,
ref: React.ForwardedRef<HTMLInputElement>
ref: React.ForwardedRef<HTMLInputElement>,
) => {
const classes = useClasses();

Expand Down Expand Up @@ -53,4 +53,4 @@ const FileUploaderComponent = (

export const FileUploader = forwardRef<HTMLInputElement, FileUploaderProps>(FileUploaderComponent);

FileUploader.displayName = 'FileUploader';
FileUploader.displayName = 'FileUploader';

0 comments on commit d304b60

Please sign in to comment.