fix: resolve ESLint errors for CI
Some checks failed
CI/CD / test (push) Successful in 47s
CI/CD / deploy (push) Failing after 3s

- Remove unused imports (Flag, Tag, Hash, User, FolderPlus, Check, Plus, Link, cn, formatDate, getPriorityLabel)
- Remove unused variable (inbox in Sidebar)
- Fix empty catch block with comment
- Replace any types with proper Mock/Record types in tests
- Suppress set-state-in-effect for intentional form state sync
- Remove unused get parameter from zustand store
This commit is contained in:
2026-01-30 03:00:17 +00:00
parent 1087da5fd8
commit 5a4d7e0ba9
10 changed files with 26 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
import { useState } from 'react';
import { useNavigate, Link } from 'react-router-dom';
import { useNavigate } from 'react-router-dom';
import { useAuthStore } from '@/stores/auth';
export function LoginPage() {