From 0198348494e929f50bc068651ccc9da5b59e9703 Mon Sep 17 00:00:00 2001 From: Hammer Date: Wed, 28 Jan 2026 20:52:36 +0000 Subject: [PATCH] fix: update API URLs to thenetwork subdomain --- src/lib/api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/api.ts b/src/lib/api.ts index 1eaf56f..dd020a2 100644 --- a/src/lib/api.ts +++ b/src/lib/api.ts @@ -1,11 +1,11 @@ import type { Profile, Client, ClientCreate, Event, EventCreate, Email, EmailGenerate, User } from '@/types'; const API_BASE = import.meta.env.PROD - ? 'https://api.donovankelly.xyz/api' + ? 'https://api.thenetwork.donovankelly.xyz/api' : '/api'; const AUTH_BASE = import.meta.env.PROD - ? 'https://api.donovankelly.xyz' + ? 'https://api.thenetwork.donovankelly.xyz' : ''; class ApiClient {