From 511f293ff1aa4766d67a17fc283cb9946734b53f Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Wed, 20 Sep 2023 17:42:37 +0800 Subject: [PATCH] Changed debug backend url --- src/components/Api/Api.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Api/Api.tsx b/src/components/Api/Api.tsx index f518496..c3faa04 100644 --- a/src/components/Api/Api.tsx +++ b/src/components/Api/Api.tsx @@ -12,8 +12,8 @@ import { export let backendURL = "https://stude.keannu1.duckdns.org"; export let backendURLWebsocket = "ws://stude.keannu1.duckdns.org"; if (__DEV__) { - backendURL = "http://10.0.10.8:8000"; - backendURLWebsocket = "ws://10.0.10.8:8000"; + backendURL = "http://10.0.10.8:8083"; + backendURLWebsocket = "ws://10.0.10.8:8083"; } // Switch this on if you wanna run production URLs while in development