summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--desktop/packages/mullvad-vpn/src/shared/notifications/notification.ts10
1 files changed, 6 insertions, 4 deletions
diff --git a/desktop/packages/mullvad-vpn/src/shared/notifications/notification.ts b/desktop/packages/mullvad-vpn/src/shared/notifications/notification.ts
index a4dd78a2b2..72e30b96fe 100644
--- a/desktop/packages/mullvad-vpn/src/shared/notifications/notification.ts
+++ b/desktop/packages/mullvad-vpn/src/shared/notifications/notification.ts
@@ -4,10 +4,12 @@ import { ButtonProps } from '../../renderer/lib/components';
import { Url } from '../constants';
export type SystemNotificationAction = {
- type: 'open-url';
- url: Url;
- text?: string;
- withAuth?: boolean;
+ type: 'navigate-external';
+ link: {
+ to: Url;
+ text?: string;
+ withAuth?: boolean;
+ };
};
export interface InAppNotificationTroubleshootInfo {