diff --git a/assets/js/app.js b/assets/js/app.js index 8acf872..adc24a1 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -4044,7 +4044,7 @@ async function submitUseAll() { const result = await api('inventory_use', {}, 'POST', { product_id: currentProduct.id, use_all: true, - location: document.getElementById('use-location').value, + location: '__all__', }); showLoading(false); if (result.success) { @@ -6934,8 +6934,8 @@ function renderCookingStep() { // Timer: detect duration in step text and show suggestion setupCookingTimerSuggestion(cleanStep); - // Speak step - if (_cookingTTS) speakCookingStep(cleanStep); + // TTS: only speak when explicitly requested via "Rileggi" button + // (auto-speak removed — use replayCookingTTS() to trigger manually) } function _buildTtsRequest(text, s) {