You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// adds Webcam plugin with default configuration and ID "Webcam".use(Webcam)// adds Webcam plugin with custom configuration and ID "webcam".use(Webcam,{countdown: true,modes: ["picture"],id: "webcam"});// Mounts plugin with ID "Webcam" (i.e. the first .use(Webcam) with default configuration)<Dashboardplugins={["Webcam"]}uppy={this.uppy}/>
You can fix it by removing the .use(Webcam) line, and removing the id: "webcam" option from the remaining one, so that the custom config will have the default ID "Webcam".
Hi there, I can't seem to be able to set camera options.
I'm trying to enable only photos and no video or audio. And I can't seem to be able to pass this props.
Here is my code
The text was updated successfully, but these errors were encountered: