Skip to content

Commit b9e106c

Browse files
authored
Hotfix (Mail-0#1218)
# READ CAREFULLY THEN REMOVE Remove bullet points that are not relevant. PLEASE REFRAIN FROM USING AI TO WRITE YOUR CODE AND PR DESCRIPTION. IF YOU DO USE AI TO WRITE YOUR CODE PLEASE PROVIDE A DESCRIPTION AND REVIEW IT CAREFULLY. MAKE SURE YOU UNDERSTAND THE CODE YOU ARE SUBMITTING USING AI. - Pull requests that do not follow these guidelines will be closed without review or comment. - If you use AI to write your PR description your pr will be close without review or comment. - If you are unsure about anything, feel free to ask for clarification. ## Description Please provide a clear description of your changes. --- ## Type of Change Please delete options that are not relevant. - [ ] 🐛 Bug fix (non-breaking change which fixes an issue) - [ ] ✨ New feature (non-breaking change which adds functionality) - [ ] 💥 Breaking change (fix or feature with breaking changes) - [ ] 📝 Documentation update - [ ] 🎨 UI/UX improvement - [ ] 🔒 Security enhancement - [ ] ⚡ Performance improvement ## Areas Affected Please check all that apply: - [ ] Email Integration (Gmail, IMAP, etc.) - [ ] User Interface/Experience - [ ] Authentication/Authorization - [ ] Data Storage/Management - [ ] API Endpoints - [ ] Documentation - [ ] Testing Infrastructure - [ ] Development Workflow - [ ] Deployment/Infrastructure ## Testing Done Describe the tests you've done: - [ ] Unit tests added/updated - [ ] Integration tests added/updated - [ ] Manual testing performed - [ ] Cross-browser testing (if UI changes) - [ ] Mobile responsiveness verified (if UI changes) ## Security Considerations For changes involving data or authentication: - [ ] No sensitive data is exposed - [ ] Authentication checks are in place - [ ] Input validation is implemented - [ ] Rate limiting is considered (if applicable) ## Checklist - [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.md) document - [ ] My code follows the project's style guidelines - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in complex areas - [ ] I have updated the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix/feature works - [ ] All tests pass locally - [ ] Any dependent changes are merged and published ## Additional Notes Add any other context about the pull request here. ## Screenshots/Recordings Add screenshots or recordings here if applicable. --- _By submitting this pull request, I confirm that my contribution is made under the terms of the project's license._
1 parent 2c8b36e commit b9e106c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

apps/mail/components/mail/mail.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,20 @@ import { MailList } from '@/components/mail/mail-list';
3939
import { useHotkeysContext } from 'react-hotkeys-hook';
4040
import { useNavigate, useParams } from 'react-router';
4141
import { useMail } from '@/components/mail/use-mail';
42-
import { PricingDialog } from '../ui/pricing-dialog';
4342
import { SidebarToggle } from '../ui/sidebar-toggle';
43+
import { PricingDialog } from '../ui/pricing-dialog';
4444
import { Textarea } from '@/components/ui/textarea';
4545
import { useBrainState } from '@/hooks/use-summary';
4646
import { clearBulkSelectionAtom } from './use-mail';
4747
import AISidebar from '@/components/ui/ai-sidebar';
4848
import { Command, RefreshCcw } from 'lucide-react';
4949
import { cleanSearchValue, cn } from '@/lib/utils';
50-
import { useBilling } from '@/hooks/use-billing';
5150
import { useThreads } from '@/hooks/use-threads';
5251
import { useBilling } from '@/hooks/use-billing';
5352
import AIToggleButton from '../ai-toggle-button';
5453
import { useIsMobile } from '@/hooks/use-mobile';
55-
import { Button } from '@/components/ui/button';
5654
import { Switch } from '@/components/ui/switch';
55+
import { Button } from '@/components/ui/button';
5756
import { useSession } from '@/lib/auth-client';
5857
import { ScrollArea } from '../ui/scroll-area';
5958
import { Label } from '@/components/ui/label';

0 commit comments

Comments
 (0)