From ec640a9bd99b124a21599bc40dfe78623a05b684 Mon Sep 17 00:00:00 2001 From: fahed Date: Mon, 23 Feb 2026 14:53:34 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20api=20import=20in=20Login.jsx=20=E2=80=94?= =?UTF-8?q?=20use=20named=20export?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- client/src/pages/Login.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/Login.jsx b/client/src/pages/Login.jsx index 27ceb2c..d147609 100644 --- a/client/src/pages/Login.jsx +++ b/client/src/pages/Login.jsx @@ -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()