diff --git a/components/editable/EditableFilePicker.tsx b/components/editable/EditableFilePicker.tsx index 6437dfc..6b9b1ef 100644 --- a/components/editable/EditableFilePicker.tsx +++ b/components/editable/EditableFilePicker.tsx @@ -5,7 +5,7 @@ import { Editable } from "./Editable"; /** * Controlled input component which displays an `input[type="file"]` in editing mode, and is invisible in preview mode. * - * Value is the file's [fakepath](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#value), as a string. + * Has no value due to how file inputs function in JS and React. */ export function EditableFilePicker(props: HTMLProps<HTMLInputElement> & { value?: undefined }) { return (