Fix microphone and partial text display during voice input
Committed 3716aa
--- a/canopy/static/enliven.js
+++ b/canopy/static/enliven.js
})
recognizer.on('partialresult', message => {
const input = message.result.partial
- if (input.slice(0, wakeWord.length) != wakeWord || !following)
+ if (input.slice(0, wakeWord.length) != wakeWord)
return
state = 'awake'
microphoneStatus('active')