mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 11:12:11 +01:00
Removed eslint disable comments and removed pullrequest comments/reviews json files
This commit is contained in:
@ -15,8 +15,6 @@ export default function CompanySettingsPage() {
|
|||||||
const csvUsernameId = useId();
|
const csvUsernameId = useId();
|
||||||
const csvPasswordId = useId();
|
const csvPasswordId = useId();
|
||||||
const { data: session, status } = useSession();
|
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<Company | null>(null);
|
const [_company, setCompany] = useState<Company | null>(null);
|
||||||
const [csvUrl, setCsvUrl] = useState<string>("");
|
const [csvUrl, setCsvUrl] = useState<string>("");
|
||||||
const [csvUsername, setCsvUsername] = useState<string>("");
|
const [csvUsername, setCsvUsername] = useState<string>("");
|
||||||
|
|||||||
@ -75,7 +75,6 @@ export default function SessionsPage() {
|
|||||||
// Pagination states
|
// Pagination states
|
||||||
const [currentPage, setCurrentPage] = useState(1);
|
const [currentPage, setCurrentPage] = useState(1);
|
||||||
const [totalPages, setTotalPages] = useState(0);
|
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
|
const [pageSize, _setPageSize] = useState(10); // Or make this configurable
|
||||||
|
|
||||||
// UI states
|
// UI states
|
||||||
|
|||||||
@ -55,7 +55,6 @@ function formatTranscript(content: string): React.ReactNode[] {
|
|||||||
rehypePlugins={[rehypeRaw]} // Add rehypeRaw to plugins
|
rehypePlugins={[rehypeRaw]} // Add rehypeRaw to plugins
|
||||||
components={{
|
components={{
|
||||||
p: "span",
|
p: "span",
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars, no-unused-vars
|
|
||||||
a: ({ node: _node, ...props }) => (
|
a: ({ node: _node, ...props }) => (
|
||||||
<a
|
<a
|
||||||
className="text-sky-600 hover:text-sky-800 underline"
|
className="text-sky-600 hover:text-sky-800 underline"
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user