From a3cfc22f099b25e541012ea908864a64434b86bd Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Sat, 7 Feb 2026 10:27:32 +0000 Subject: [PATCH] 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. --- static/js/components/photo-capture.js | 1 - 1 file changed, 1 deletion(-) diff --git a/static/js/components/photo-capture.js b/static/js/components/photo-capture.js index bb3e6c1..53e3197 100644 --- a/static/js/components/photo-capture.js +++ b/static/js/components/photo-capture.js @@ -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);