From 86eacea74d754f67e660f3ea7fd988a2444ea3cf Mon Sep 17 00:00:00 2001 From: Vendicated Date: Tue, 11 Oct 2022 21:48:28 +0200 Subject: Make ReactDevTools Opt-in --- src/ipcMain/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ipcMain/index.ts') diff --git a/src/ipcMain/index.ts b/src/ipcMain/index.ts index 63844e0..1f6166e 100644 --- a/src/ipcMain/index.ts +++ b/src/ipcMain/index.ts @@ -24,7 +24,7 @@ function readCss() { return readFile(QUICKCSS_PATH, "utf-8").catch(() => ""); } -function readSettings() { +export function readSettings() { try { return readFileSync(SETTINGS_FILE, "utf-8"); } catch { -- cgit