fix: search button not working on image picker popover (#679)

This commit is contained in:
Dakshesh Jain 2023-04-03 15:57:08 +05:30 committed by GitHub
parent 12ad3892f8
commit cfe7c5e0b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,7 +107,7 @@ export const ImagePickerPopover: React.FC<Props> = ({ label, value, onChange })
onChange={(e) => setFormData({ ...formData, search: e.target.value })}
placeholder="Search for images"
/>
<PrimaryButton className="bg-indigo-600" size="sm">
<PrimaryButton type="submit" className="bg-indigo-600" size="sm">
Search
</PrimaryButton>
</form>