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

Updated wording for Stable & Insiders detection #1324

Merged
merged 2 commits into from
Dec 16, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/vscode/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export function checkForOtherPrismaExtension(): void {
if (files.length !== 0) {
// eslint-disable-next-line @typescript-eslint/no-floating-promises
window.showInformationMessage(
`You have both the Insider and stable Prisma VSCode extension installed. Please uninstall or disable one of them for a better experience.`,
`You have both both versions (Insider and Stable) of the Prisma VSCode extension enabled in your workspace. Please uninstall or disable one of them for a better experience.`,
Druue marked this conversation as resolved.
Show resolved Hide resolved
)
console.log('Both the insider and stable Prisma VSCode extension are being used.')
console.log('Both versions (Insider and Stable) of the Prisma VSCode extension are enabled.')
Druue marked this conversation as resolved.
Show resolved Hide resolved
}
}

Expand Down