We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6860c92 commit 00b7e21Copy full SHA for 00b7e21
1 file changed
src/services/auth/login/authService.ts
@@ -10,8 +10,6 @@ const API_BASE_URL = process.env.REACT_APP_API_URL;
10
// Te dirá qué valor se "horneó" (baked in) durante el build en GitHub.
11
console.log("AuthService: Valor de REACT_APP_API_URL (al cargar):", API_BASE_URL);
12
13
-// --- VALIDACIÓN DE URL ---
14
-// Función para validar que la URL es absoluta (empieza con http)
15
const isValidHttpUrl = (url: string | undefined): boolean => {
16
if (!url) return false;
17
return url.startsWith('http://') || url.startsWith('https://');
0 commit comments