From 603d92685671653f8c5f0f7e4e790d02e468c25a Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Thu, 28 Jan 2021 11:17:53 -0800 Subject: [PATCH] Use ${productName} in privacy policy window title --- src/main/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/index.js b/src/main/index.js index 8b182ec..ed2fa25 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -224,7 +224,7 @@ const createPrivacyWindow = () => { height: _windows.main.height * 0.8, parent: _windows.main, search: 'route=privacy', - title: 'Scratch Desktop Privacy Policy' + title: `${productName} Privacy Policy` }); return window; };