From f109065606875c1b96ef6112586260d310c45733 Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Fri, 4 Jun 2021 00:22:59 -0500 Subject: [PATCH] lint Signed-off-by: Aaron Raimist --- src/electron-main.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/electron-main.js b/src/electron-main.js index f3d05b0..ddfa28c 100644 --- a/src/electron-main.js +++ b/src/electron-main.js @@ -210,9 +210,10 @@ async function setupGlobals() { if (e instanceof SyntaxError) { dialog.showMessageBox({ type: "error", - title: _t("Your %(brand)s is misconfigured", { brand: vectorConfig.brand || 'Element'}), + title: _t("Your %(brand)s is misconfigured", { brand: vectorConfig.brand || 'Element' }), message: _t("Your custom %(brand)s configuration contains invalid JSON. " + - "Please correct the problem and reopen %(brand)s.", { brand: vectorConfig.brand || 'Element'}), + "Please correct the problem and reopen %(brand)s.", + { brand: vectorConfig.brand || 'Element' }), detail: e.message || "", }); }