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 }) => (