fix(ui): show native camera/gallery picker on mobile photo capture

Remove capture="environment" from the file input so mobile browsers
present the OS-native action sheet instead of opening the camera directly.
This commit is contained in:
Jon Seager 2026-02-07 10:27:32 +00:00
parent 8410b46a11
commit a3cfc22f09
No known key found for this signature in database

View file

@ -3,7 +3,6 @@ customElements.define("brew-photo-capture", class extends HTMLElement {
const input = document.createElement("input");
input.type = "file";
input.accept = "image/*";
input.capture = "environment";
input.hidden = true;
this.appendChild(input);