Skip to content

Commit

Permalink
Revert "[CP-101] Windows titles updated - TEST (#1465)" (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarski committed Oct 23, 2023
1 parent cb3effa commit 9879ed8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/app/src/__deprecated__/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ if (!gotTheLock) {
}

ipcMain.answerRenderer(HelpActions.OpenWindow, () => {
const title = "CP-101-test - Help"
const title = "Mudita Center - Help"
if (helpWindow === null) {
helpWindow = new BrowserWindow(
getWindowOptions({
Expand Down Expand Up @@ -365,31 +365,31 @@ createOpenWindowListener(
AboutActions.LicenseOpenWindow,
Mode.License,
URL_MAIN.license,
"CP-101-test - License",
"Mudita Center - License",
licenseWindow
)

createOpenWindowListener(
AboutActions.TermsOpenWindow,
Mode.TermsOfService,
URL_MAIN.termsOfService,
"CP-101-test - Terms of service",
"Mudita Center - Terms of service",
termsWindow
)

createOpenWindowListener(
AboutActions.PolicyOpenWindow,
Mode.PrivacyPolicy,
URL_MAIN.privacyPolicy,
"CP-101-test - Privacy policy",
"Mudita Center - Privacy policy",
policyWindow
)

createOpenWindowListener(
PureSystemActions.SarOpenWindow,
Mode.Sar,
URL_OVERVIEW.sar,
"CP-101-test - SAR information",
"Mudita Center - SAR information",
policyWindow
)

Expand All @@ -408,7 +408,7 @@ const createErrorWindow = async (googleAuthWindow: BrowserWindow) => {
}

ipcMain.answerRenderer(GoogleAuthActions.OpenWindow, async (scope: Scope) => {
const title = "CP-101-test - Google Auth"
const title = "Mudita Center - Google Auth"
if (process.env.MUDITA_CENTER_SERVER_URL) {
const cb = (data: string) => {
// AUTO DISABLED - fix me if you like :)
Expand Down Expand Up @@ -480,7 +480,7 @@ ipcMain.answerRenderer(
// AUTO DISABLED - fix me if you like :)
// eslint-disable-next-line @typescript-eslint/require-await
async (data: { authorizationUrl: string; scope: string }) => {
const title = "CP-101-test - Outlook Auth"
const title = "Mudita Center - Outlook Auth"
const { authorizationUrl, scope } = data
if (clientId) {
if (outlookAuthWindow === null) {
Expand Down

0 comments on commit 9879ed8

Please sign in to comment.