diff --git a/src/components/auth/AccountSwitcher.tsx b/src/components/auth/AccountSwitcher.tsx
index 94ce698..0c2b686 100644
--- a/src/components/auth/AccountSwitcher.tsx
+++ b/src/components/auth/AccountSwitcher.tsx
@@ -1,4 +1,4 @@
-import { useState } from 'react';
+import React, { useState } from 'react';
import { ChevronDown, LogOut, User, UserPlus } from 'lucide-react';
import {
DropdownMenu,
@@ -49,13 +49,27 @@ export function AccountSwitcher() {
if (!isLoggedIn) {
return (
-
+ <>
+
+
+ setLoginDialogOpen(false)}
+ onLogin={handleLogin}
+ onSignup={() => setSignupDialogOpen(true)}
+ />
+
+ setSignupDialogOpen(false)}
+ />
+ >
);
}