Skip to content

Commit 3d20975

Browse files
committedMar 10, 2025·
refactor: comment out email login link in LoginPage component
1 parent f635e1f commit 3d20975

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎web/src/modules/auth/components/loginPage.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
faGithub,
44
faGoogle,
55
} from '@fortawesome/free-brands-svg-icons';
6-
import { faRightToBracket } from '@fortawesome/free-solid-svg-icons';
76
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
87
import Link from 'next/link';
98

@@ -65,7 +64,9 @@ export const LoginPage = () => {
6564

6665
<div className='flex flex-col w-full gap-4'>
6766
{/* Login with Email */}
68-
<Link
67+
{/*
68+
// TODO: Uncomment when email login is implemented
69+
<Link
6970
data-test='login-discord'
7071
href={'/login/email'}
7172
className='flex items-center text-white outline outline-white outline-1 bg-none p-2.5 hover:outline-blue-500 hover:text-blue-500 hover:transition-all duration-200 uppercase rounded-lg'
@@ -76,6 +77,7 @@ export const LoginPage = () => {
7677
/>
7778
<span className='flex-1 text-nowrap'>Log in with email</span>
7879
</Link>
80+
*/}
7981
{/* Login with Google */}
8082
<Link
8183
data-test='login-google'

0 commit comments

Comments
 (0)