From 278c59fa5c9fa9869f5c60359723cc0ea0650103 Mon Sep 17 00:00:00 2001 From: highperfocused Date: Sat, 22 Nov 2025 01:57:36 +0100 Subject: [PATCH] Remove unused UserPlus icon import from LoginArea component --- src/components/auth/LoginArea.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/auth/LoginArea.tsx b/src/components/auth/LoginArea.tsx index 06793a9..ea70f2a 100644 --- a/src/components/auth/LoginArea.tsx +++ b/src/components/auth/LoginArea.tsx @@ -2,7 +2,7 @@ // It is important that all functionality in this file is preserved, and should only be modified if explicitly requested. import { useState } from 'react'; -import { User, UserPlus } from 'lucide-react'; +import { User } from 'lucide-react'; import { Button } from '@/components/ui/button.tsx'; import LoginDialog from './LoginDialog'; import SignupDialog from './SignupDialog';