when i accidentally hit enter before propts appeared, propts will receive this enter,How to fix this situation?
import { select } from '@inquirer/prompts'
console.log('wait.....')
setTimeout(() => {
select({
message: 'select',
choices: [
{ name: 'a', value: 'a' },
{ name: 'b', value: 'b' },
{ name: 'c', value: 'c' },
],
})
}, 2000)