Skip to content

Commit

Permalink
Merge pull request #870 from IPG-Automotive-UK/bug/imageuploader-wron…
Browse files Browse the repository at this point in the history
…g-css-property

Fix ImageUploader container's wrong spelled CSS property
  • Loading branch information
m4manjesh authored May 17, 2024
2 parents d0ee21f + df7a93b commit a7650a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ImageUploader/ImageUploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function ImageUploader({
},
justifyContent: "center",
p: 2,
pointerEvenets: selectedFiles.length > 0 ? "none" : "auto"
pointerEvents: selectedFiles.length > 0 ? "none" : "auto"
})}
>
<input {...getInputProps()} />
Expand Down

0 comments on commit a7650a0

Please sign in to comment.