[WEB-2415] fix:remove input type to fix image upload (#5563)
* remove input type to fix things * made the same changes in all locations
This commit is contained in:
parent
4d38a10f8b
commit
c44bf861e0
3 changed files with 3 additions and 3 deletions
|
|
@ -344,7 +344,7 @@ export const ImagePickerPopover: React.FC<Props> = observer((props) => {
|
|||
</div>
|
||||
)}
|
||||
|
||||
<input {...getInputProps()} type="text" />
|
||||
<input {...getInputProps()} />
|
||||
</div>
|
||||
</div>
|
||||
{fileRejections.length > 0 && (
|
||||
|
|
|
|||
|
|
@ -144,7 +144,7 @@ export const UserImageUploadModal: React.FC<Props> = observer((props) => {
|
|||
</div>
|
||||
)}
|
||||
|
||||
<input {...getInputProps()} type="text" />
|
||||
<input {...getInputProps()} />
|
||||
</div>
|
||||
</div>
|
||||
{fileRejections.length > 0 && (
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ export const WorkspaceImageUploadModal: React.FC<Props> = observer((props) => {
|
|||
</div>
|
||||
)}
|
||||
|
||||
<input {...getInputProps()} type="text" />
|
||||
<input {...getInputProps()}/>
|
||||
</div>
|
||||
</div>
|
||||
{fileRejections.length > 0 && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue