From 3da3222c682841ba5b40686fcff818e24a60a26b Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Fri, 11 Sep 2026 17:49:31 +0300 Subject: [PATCH] feat(settingsview): remove stop game option --- src/components/views/SettingsView.tsx | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/components/views/SettingsView.tsx b/src/components/views/SettingsView.tsx index 7d460de..4e87c90 100644 --- a/src/components/views/SettingsView.tsx +++ b/src/components/views/SettingsView.tsx @@ -57,8 +57,6 @@ const SettingsView = memo(function SettingsView() { const { currentTrack, skipTrack, tracks, playPressSound, playBackSound } = useAudio(); const { - isGameRunning, - stopGame, isRunnerDownloading, runnerDownloadProgress, downloadRunner, @@ -751,16 +749,6 @@ const SettingsView = memo(function SettingsView() { }); } - if (isGameRunning) { - items.push({ - id: "stop", - label: t("settings.stopGameButton"), - type: "button", - onClick: stopGame, - color: "red", - }); - } - items.push({ id: "back", label: currentSubMenu === "main" ? t("common.done") : t("common.back"), @@ -803,7 +791,6 @@ const SettingsView = memo(function SettingsView() { runnerDownloadProgress, isMac, perfBoost, - isGameRunning, handleTrackToggle, handleVfxToggle, handleRpcToggle, @@ -814,7 +801,6 @@ const SettingsView = memo(function SettingsView() { handleMangohudToggle, handleSkipIntroToggle, handleResetSetup, - stopGame, downloadRunner, playPressSound, playBackSound,