diff --git a/src/components/AuthenticationFlow/AuthenticationForm.tsx b/src/components/AuthenticationFlow/AuthenticationForm.tsx
index 2667a141d..3a6b5ecb6 100644
--- a/src/components/AuthenticationFlow/AuthenticationForm.tsx
+++ b/src/components/AuthenticationFlow/AuthenticationForm.tsx
@@ -1,11 +1,12 @@
+import { useState } from 'react';
import { GitHubButton } from './GitHubButton';
import { GoogleButton } from './GoogleButton';
import { LinkedInButton } from './LinkedInButton';
import { EmailLoginForm } from './EmailLoginForm';
-import { useState } from 'react';
export function AuthenticationForm() {
const [isDisabled, setIsDisabled] = useState(false);
+
return (
<>
diff --git a/src/pages/login.astro b/src/pages/login.astro
index cfa6080c3..d2a5faa2b 100644
--- a/src/pages/login.astro
+++ b/src/pages/login.astro
@@ -1,10 +1,5 @@
---
import { AuthenticationForm } from '../components/AuthenticationFlow/AuthenticationForm';
-import Divider from '../components/AuthenticationFlow/Divider.astro';
-import { EmailLoginForm } from '../components/AuthenticationFlow/EmailLoginForm';
-import { GitHubButton } from '../components/AuthenticationFlow/GitHubButton';
-import { GoogleButton } from '../components/AuthenticationFlow/GoogleButton';
-import { LinkedInButton } from '../components/AuthenticationFlow/LinkedInButton';
import AccountLayout from '../layouts/AccountLayout.astro';
---
diff --git a/src/pages/signup.astro b/src/pages/signup.astro
index 268dff354..fb14c97d0 100644
--- a/src/pages/signup.astro
+++ b/src/pages/signup.astro
@@ -1,10 +1,5 @@
---
import { AuthenticationForm } from '../components/AuthenticationFlow/AuthenticationForm';
-import Divider from '../components/AuthenticationFlow/Divider.astro';
-import { EmailSignupForm } from '../components/AuthenticationFlow/EmailSignupForm';
-import { GitHubButton } from '../components/AuthenticationFlow/GitHubButton';
-import { GoogleButton } from '../components/AuthenticationFlow/GoogleButton';
-import { LinkedInButton } from '../components/AuthenticationFlow/LinkedInButton';
import AccountLayout from '../layouts/AccountLayout.astro';
---