Skip to content

Commit

Permalink
Lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
naheyansheikh committed Nov 28, 2024
1 parent abb8113 commit f9a24c5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion frontend/src/components/ContentHeader/ContentHeader.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from "react";
import { useLocation } from "react-router-dom";
import { PlusIcon, ChevronDownIcon } from "@heroicons/react/24/outline";
import "./ContentHeader.css";
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use state";
import { useState, useEffect } from "react";
import { useState } from "react";
import { useNavigate, useLocation } from "react-router-dom";
import "./Navbar.css";
import {
Expand Down
6 changes: 1 addition & 5 deletions frontend/src/pages/LogHistory.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from "react";
import { useState } from "react";
import { ChevronUpDownIcon } from "@heroicons/react/24/outline";
import TopNav from "../components/TopNav/TopNav";
import Navbar from "../components/Navbar/Navbar";
Expand Down Expand Up @@ -199,10 +199,6 @@ export default function LogHistory() {
type="checkbox"
onChange={handleSelectAll}
checked={currentLogs.every((log) => selectedLogs.has(log.id))}
indeterminate={
currentLogs.some((log) => selectedLogs.has(log.id)) &&
!currentLogs.every((log) => selectedLogs.has(log.id))
}
/>
</th>
<th className="log-title-column">
Expand Down

0 comments on commit f9a24c5

Please sign in to comment.