auto-commit for 3899eb26-97f1-4447-99fe-04356bbff96a

This commit is contained in:
emergent-agent-e1
2025-11-08 17:05:26 +00:00
parent c8b0e33334
commit a1b4506b4f
+1 -2
View File
@@ -53,8 +53,7 @@ export function AuthProvider({ children }: { children: React.ReactNode }) {
const signIn = async (email: string, password: string) => {
try {
const backendUrl = process.env.EXPO_PUBLIC_BACKEND_URL || 'http://localhost:8001';
const response = await fetch(`${backendUrl}/api/auth/signin`, {
const response = await fetch(API_ENDPOINTS.AUTH_SIGNIN, {
method: 'POST',
headers: {
'Content-Type': 'application/json',