Update debug backend url

This commit is contained in:
Keannu Bernasol 2024-01-07 12:12:05 +08:00
parent c1c092080c
commit a685e3fcb5

View file

@ -23,11 +23,11 @@ import {
TransactionCreateType,
} from "../Types/Types";
const debug = false;
const debug = true;
let backendURL;
if (debug) {
backendURL = "http://localhost:8000/";
backendURL = "http://localhost:8092/";
} else {
backendURL = "https://csm-backend.keannu1.duckdns.org/";
}