Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(consent): update grammar in message and question #42

Merged
merged 1 commit into from
Jan 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/consent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ export async function ensureUserconsent (options: TelemetryOptions): Promise<boo

process.stdout.write('\n')
consola.info(`${c.green('NuxtJS')} collects completely anonymous data about usage.
This will help us improving Nuxt developer experience over the time.
This will help us improve Nuxt developer experience over time.
Read more on ${c.cyan.underline('https://git.io/nuxt-telemetry')}\n`)

const { accept } = await inquirer.prompt({
type: 'confirm',
name: 'accept',
message: 'Are you interested in participation?'
message: 'Are you interested in participating?'
})
process.stdout.write('\n')

Expand Down