The headless screenshots from Phases 4 and 5 had VITE_LUMOTIA_QUIETWARE=1
set at capture time; the running Tauri dev/release builds did not. Result:
21 commits of design work were invisible in the actual app even though the
emailed screenshots showed v0.3.
Fix is one-line: invert the env-var check in src/routes/+layout.svelte so
data-design="quietware" is the default on this branch. Explicit opt-out via
VITE_LUMOTIA_QUIETWARE=0 still works for anyone who wants to see the v0.2
surface for comparison.
Behaviour:
unset → quietware ON
"1" → quietware ON (same as unset)
"0" → v0.2 surface forced
Branch-only default for now. Merge to main can decide whether to keep this
or require explicit opt-in once v0.3 stabilises.