Fix api import in Login.jsx — use named export
All checks were successful
Deploy / deploy (push) Successful in 11s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
fahed
2026-02-23 14:53:34 +03:00
parent 8d53524e41
commit ec640a9bd9

View File

@@ -3,7 +3,7 @@ import { useNavigate } from 'react-router-dom'
import { useAuth } from '../contexts/AuthContext'
import { useLanguage } from '../i18n/LanguageContext'
import { Megaphone, Lock, Mail, AlertCircle, User, CheckCircle } from 'lucide-react'
import api from '../utils/api'
import { api } from '../utils/api'
export default function Login() {
const navigate = useNavigate()