auto-commit for 77af2a2d-7bc3-4be2-9b35-ce895c139c34

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