summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/components/settings/pages/general/RemoteDebugging.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/settings/pages/general/RemoteDebugging.tsx b/frontend/src/components/settings/pages/general/RemoteDebugging.tsx
index 85102511..bd405ce1 100644
--- a/frontend/src/components/settings/pages/general/RemoteDebugging.tsx
+++ b/frontend/src/components/settings/pages/general/RemoteDebugging.tsx
@@ -18,8 +18,8 @@ export default function RemoteDebuggingSettings() {
value={allowRemoteDebugging || false}
onChange={(toggleValue) => {
setAllowRemoteDebugging(toggleValue);
- if (toggleValue) DeckyBackend.call('allow_remote_debugging');
- else DeckyBackend.call('disallow_remote_debugging');
+ if (toggleValue) DeckyBackend.call('utilities/allow_remote_debugging');
+ else DeckyBackend.call('utilities/disallow_remote_debugging');
}}
/>
</Field>