We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8203d60 + e2fd1b7 commit e6c099eCopy full SHA for e6c099e
packages/bento-design-system/src/FileUploaderField/FileUploaderField.tsx
@@ -141,6 +141,7 @@ export function FileUploaderField<E extends string>({
141
allowedFileTypes,
142
height: height_,
143
isUploading,
144
+ name,
145
}: Props<E>) {
146
const config = useBentoConfig().fileUploaderField;
147
const height = height_ ?? config.defaultHeight;
@@ -354,7 +355,7 @@ export function FileUploaderField<E extends string>({
354
355
</Stack>
356
</Inset>
357
)}
- <input {...getInputProps()} {...fieldProps} />
358
+ <input name={name} {...getInputProps()} {...fieldProps} />
359
</Box>
360
</Field>
361
);
0 commit comments