From 2e3e028579883479e2fbb3cd8918e56a685cc0c8 Mon Sep 17 00:00:00 2001 From: Kaj Kowalski Date: Mon, 30 Jun 2025 19:58:25 +0200 Subject: [PATCH] Removed eslint disable comments and removed pullrequest comments/reviews json files --- app/dashboard/company/page.tsx | 2 -- app/dashboard/sessions/page.tsx | 1 - components/TranscriptViewer.tsx | 1 - pull-20-comments.json | 1 - pull-20-reviews.json | 8 -------- 5 files changed, 13 deletions(-) delete mode 100644 pull-20-comments.json delete mode 100644 pull-20-reviews.json diff --git a/app/dashboard/company/page.tsx b/app/dashboard/company/page.tsx index 7d09348..4bdb0af 100644 --- a/app/dashboard/company/page.tsx +++ b/app/dashboard/company/page.tsx @@ -15,8 +15,6 @@ export default function CompanySettingsPage() { const csvUsernameId = useId(); const csvPasswordId = useId(); const { data: session, status } = useSession(); - // We store the full company object for future use and updates after save operations - // eslint-disable-next-line @typescript-eslint/no-unused-vars, no-unused-vars const [_company, setCompany] = useState(null); const [csvUrl, setCsvUrl] = useState(""); const [csvUsername, setCsvUsername] = useState(""); diff --git a/app/dashboard/sessions/page.tsx b/app/dashboard/sessions/page.tsx index 700de30..08a2588 100644 --- a/app/dashboard/sessions/page.tsx +++ b/app/dashboard/sessions/page.tsx @@ -75,7 +75,6 @@ export default function SessionsPage() { // Pagination states const [currentPage, setCurrentPage] = useState(1); const [totalPages, setTotalPages] = useState(0); - // eslint-disable-next-line @typescript-eslint/no-unused-vars, no-unused-vars const [pageSize, _setPageSize] = useState(10); // Or make this configurable // UI states diff --git a/components/TranscriptViewer.tsx b/components/TranscriptViewer.tsx index 17886f4..cdefa55 100644 --- a/components/TranscriptViewer.tsx +++ b/components/TranscriptViewer.tsx @@ -55,7 +55,6 @@ function formatTranscript(content: string): React.ReactNode[] { rehypePlugins={[rehypeRaw]} // Add rehypeRaw to plugins components={{ p: "span", - // eslint-disable-next-line @typescript-eslint/no-unused-vars, no-unused-vars a: ({ node: _node, ...props }) => (