From ce5601ad2f3b67f4803ff4df2c95c8fa4767bc5f Mon Sep 17 00:00:00 2001 From: Nayam Amarshe <25067102+NayamAmarshe@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:39:52 +0530 Subject: [PATCH] Update build --- common/feature-flags.ts | 2 +- electron/main-window.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/feature-flags.ts b/common/feature-flags.ts index b2466c4..9ecff52 100644 --- a/common/feature-flags.ts +++ b/common/feature-flags.ts @@ -3,5 +3,5 @@ type FeatureFlags = { }; export const featureFlags: FeatureFlags = { - APP_STORE_BUILD: true, + APP_STORE_BUILD: false, }; diff --git a/electron/main-window.ts b/electron/main-window.ts index 65cd1a1..26493ed 100644 --- a/electron/main-window.ts +++ b/electron/main-window.ts @@ -30,7 +30,7 @@ const createMainWindow = () => { const url = electronIsDev ? "http://localhost:8000" : format({ - pathname: join(__dirname, "../renderer/out/index.html"), + pathname: join(__dirname, "../../renderer/out/index.html"), protocol: "file:", slashes: true, });