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 +};