Skip to content

Commit b139dd1

Browse files
committed
fix: unused params
1 parent 6f6041b commit b139dd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/common/ImageUploader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const ImageUploader: React.FC<
99
value?: string
1010
imageName: string
1111
} & Parameters<typeof Input>[0]
12-
> = ({ onChange, value, imageName, ...props }) => {
12+
> = ({ onChange, imageName }) => {
1313
const [url, setUrl] = useState<string>('')
1414
const [preview, setPreview] = useState<string>()
1515

0 commit comments

Comments
 (0)