diff --git a/src/main/mainWindow.ts b/src/main/mainWindow.ts index 04feaad..d8ad3b1 100644 --- a/src/main/mainWindow.ts +++ b/src/main/mainWindow.ts @@ -232,7 +232,7 @@ export function createMainWindow() { }, icon: ICON_PATH, frame: VencordSettings.store.frameless !== true, - ...Settings.store.staticTitle ? { title: "Vencord" } : {}, + ...(Settings.store.staticTitle ? { title: "Vencord" } : {}), ...(VencordSettings.store.macosTranslucency ? { vibrancy: "sidebar", diff --git a/src/renderer/components/Settings.tsx b/src/renderer/components/Settings.tsx index a772da5..8ece41f 100644 --- a/src/renderer/components/Settings.tsx +++ b/src/renderer/components/Settings.tsx @@ -35,7 +35,7 @@ export default function SettingsUi() { [ "staticTitle", "Static Title", - "Makes the window title \"Vencord\" instead of changing to the current page" + 'Makes the window title "Vencord" instead of changing to the current page' ] ];