fix core-server URL in prod

This commit is contained in:
PxlLoewe
2025-07-04 20:43:14 -07:00
parent 075d34a01c
commit 80d2704852
7 changed files with 6 additions and 12 deletions

View File

@@ -2,7 +2,7 @@
import axios from "axios";
const discordAxiosClient = axios.create({
baseURL: process.env.DISCORD_SERVER_URL || "http://localhost:3005",
baseURL: process.env.CORE_SERVER_URL || "http://localhost:3005",
});
export const renameMember = async (memberId: string, newName: string) => {