From 24db29b7090584bae27773b5865739da69e3a4f5 Mon Sep 17 00:00:00 2001 From: frakarr Date: Wed, 10 Dec 2025 23:30:35 +0100 Subject: [PATCH] Update Login.tsx --- pages/Login.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pages/Login.tsx b/pages/Login.tsx index df5bdc1..416675d 100644 --- a/pages/Login.tsx +++ b/pages/Login.tsx @@ -1,6 +1,7 @@ + import React, { useState } from 'react'; import { useNavigate } from 'react-router-dom'; -import { CondoService } from '../services/mockDb'; +import { CondoService } from '../services/api'; import { Building, Lock, Mail, AlertCircle } from 'lucide-react'; export const LoginPage: React.FC = () => { @@ -95,4 +96,4 @@ export const LoginPage: React.FC = () => { ); -}; \ No newline at end of file +};