From d26147d33ec565667ada0b2448db10af5e31b8b5 Mon Sep 17 00:00:00 2001 From: Jan Piotrowski Date: Tue, 7 May 2024 14:48:16 +0000 Subject: [PATCH] temporary text and link --- packages/vscode/src/notifications.ts | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/packages/vscode/src/notifications.ts b/packages/vscode/src/notifications.ts index 79696a37ea..947451dda9 100644 --- a/packages/vscode/src/notifications.ts +++ b/packages/vscode/src/notifications.ts @@ -5,19 +5,13 @@ export const showPDPNotification = async () => { if (pdpNotif) { void window - .showInformationMessage('Warning Notification With Actions', 'Action 1', 'Action 2', 'Action 3') + .showInformationMessage('Supercharge your Prisma ORM usage with global database caching, serverless connection pooling and real-time database events.', 'Visit Prisma Data Platform') .then((v) => { if (v === undefined) return switch (v) { case 'Action 1': - void env.openExternal(Uri.parse('https://www.prisma.io/')) - break - - case 'Action 2': - break - - case 'Action 3': + void env.openExternal(Uri.parse('https://pris.ly/cli/pdp')) break } })