Skip to content

Commit

Permalink
make typescript shut the fuck up
Browse files Browse the repository at this point in the history
  • Loading branch information
0xlynett committed Aug 24, 2024
1 parent 74edeef commit 05091fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/TaskList.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, Chip, Link } from "@nextui-org/react";
import { Chip, Link } from "@nextui-org/react";

export interface Task {
name: string;
Expand Down
2 changes: 0 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ import { NextUIProvider } from "@nextui-org/react";
import {
createBrowserRouter,
Outlet,
Route,
RouterProvider,
Routes,
useNavigate,
} from "react-router-dom";
import { loader } from "./loader.ts";
Expand Down
3 changes: 2 additions & 1 deletion src/pages/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const Board: React.FC = () => {

const [squadsVisible, setSquadsVisible] = useState(true);
const [tasksVisible, setTasksVisible] = useState(true);
const [selectedKeys, setSelectedKeys] = useState(new Set<string>());
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const [selectedKeys, setSelectedKeys] = useState<any>(new Set<string>());

const displayedSquads = useMemo(() => {
return squads
Expand Down

0 comments on commit 05091fc

Please sign in to comment.