From f5c1b7430a3cddd5bf017c8a1c89a336fee1257a Mon Sep 17 00:00:00 2001 From: shancheas Date: Wed, 2 Sep 2026 08:40:08 +0700 Subject: [PATCH] refactor: simplify login component imports and remove unused dependencies - Removed the `Divider` import and unnecessary icons (`GoogleIcon`, `MicrosoftIcon`) from the login component, streamlining the code. - Improved code readability by consolidating imports, enhancing maintainability. These changes contribute to a cleaner and more efficient login component, making it easier for developers to work with the codebase. --- apps/web/src/apps/auth/login/index.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/web/src/apps/auth/login/index.tsx b/apps/web/src/apps/auth/login/index.tsx index 3248d84..333eb7c 100644 --- a/apps/web/src/apps/auth/login/index.tsx +++ b/apps/web/src/apps/auth/login/index.tsx @@ -3,14 +3,11 @@ import { FieldPasswordInput, Checkbox, Button, - Divider, Select, Image, notifications, } from '@repo/ui/components'; -import { Lock, Apple, LogInIcon, UserRound, Globe } from 'lucide-react'; -import { GoogleIcon } from './components/google-icon'; -import { MicrosoftIcon } from './components/microsoft-icon'; +import { Lock, LogInIcon, UserRound, Globe } from 'lucide-react'; import { RightSection } from './components/right-section'; import { useTranslation, registerModuleNamespace } from '@repo/core-i18n'; import { AppStorageKey, appStorage } from '../../../core/storage/local';