chore: promote dev to uat — VITE_API_URL fix (GRO-1280) #416

Merged
the-dogfather-cto[bot] merged 23 commits from dev into uat 2026-05-14 20:32:09 +00:00
Showing only changes of commit 7339d51acf - Show all commits
+1 -1
View File
@@ -1,7 +1,7 @@
import { createAuthClient } from "better-auth/react";
export const authClient = createAuthClient({
baseURL: import.meta.env.VITE_API_URL ?? "",
baseURL: import.meta.env.VITE_API_URL || window.location.origin,
});
export const { signIn, signOut, useSession, changePassword } = authClient;