Start capture form with one asset name input pre-populated
Default assetNames to [''] so an empty input is ready immediately
rather than requiring a click to add the first one.
change
commit fe1716a205b8f7f588d3c419828673fde2558660
author Claude <noreply@anthropic.com>
date
parent f07d5699
diff --git a/public/capture.js b/public/capture.js
index ee7a55f..132e2a7 100644
--- a/public/capture.js
+++ b/public/capture.js
@@ -4,7 +4,7 @@ function captureApp() {
     preview: null,
     dragging: false,
     activeRef: null,
-    assetNames: [],
+    assetNames: [''],
 
     handleFile(file, ref) {
       if (!file) return;