From 5394af6c3a53dcf29dea9bb74a393eb1716531c6 Mon Sep 17 00:00:00 2001 From: Renaud Heluin Date: Fri, 4 Oct 2024 19:22:07 +0200 Subject: [PATCH] fix: duplicate alert --- src/renderer/MainWindow/App.tsx | 43 +++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/src/renderer/MainWindow/App.tsx b/src/renderer/MainWindow/App.tsx index 966b210..0ac320e 100644 --- a/src/renderer/MainWindow/App.tsx +++ b/src/renderer/MainWindow/App.tsx @@ -442,12 +442,14 @@ function TheApp() { window.initialisationAPI.sendConfigDatasToFront( (configData: ConfigData) => { frontLog.debug(`sendConfigDatasToFront`, configData) - if (configData.error) { - frontLog.error(configData) - window.alert( - `${configData.type} : ${configData.message ? configData.message : configData.error}` - ) - } + // if (configData.error) { + // frontLog.error(configData) + // if (process.env['WEBPACK_SERVE'] === 'true') { + // window.alert( + // `0. ${configData.type} : ${configData.message ? configData.message : configData.error}` + // ) + // } + // } switch (configData.type) { case ConfigData.WORKDIR: setWorkDir(configData.result as string) @@ -521,20 +523,29 @@ function TheApp() { break default: - alert( - `ConfigData.errorType=${configData.errorType} not handle in App.tsx` - ) - // throw new Error( - // 'ConfigData.errorType not handle in App.tsx' - // ) + // if (configData.errorType !== undefined) { + // window.alert( + // `1. ConfigData.errorType=${configData.errorType} not handle in App.tsx` + // ) + // } else { + // frontLog.error( + // `ConfigData.errorType=${configData.errorType} not handle in App.tsx` + // ) + // } + break } break default: - alert( - `ConfigData.type=${configData.type} not handle in App.tsx` - ) - // throw new Error('ConfigData not handle in App.tsx') + // if (configData.type) { + // window.alert( + // `2. ConfigData.type=${configData.type} not handle in App.tsx` + // ) + // } else { + // frontLog.error( + // `ConfigData.type=${configData.type} not handle in App.tsx` + // ) + // } } } )