diff --git a/src/features/auth/components/LoginForm.tsx b/src/features/auth/components/LoginForm.tsx index ba27cb16..98233740 100644 --- a/src/features/auth/components/LoginForm.tsx +++ b/src/features/auth/components/LoginForm.tsx @@ -8,9 +8,7 @@ interface Props { handleGoogleAuth?: () => void; } -function LoginForm({ isLoading, onLogin, onForgotPasswordClick, handleGoogleAuth }: Props) { - const devMode = localStorage.getItem('devMode') === 'true'; - +function LoginForm({ isLoading, onLogin, onForgotPasswordClick }: Props) { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); @@ -36,7 +34,7 @@ function LoginForm({ isLoading, onLogin, onForgotPasswordClick, handleGoogleAuth
- {devMode && ( + {/* {devMode && ( } style={{ background: 'white', boxShadow: '0px 2px 3px 0px #0000002B, 0px 0px 3px 0px #00000015', border: 'none' }} /> - )} + )} */}
);