mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 18:33:01 +00:00
fixed all warnings :D
This commit is contained in:
@@ -19,7 +19,6 @@ import {
|
||||
} from "@/components/ui/dropdown-menu";
|
||||
import { ResizablePanel, ResizablePanelGroup, ResizableSeparator } from "@/components/ui/resizable";
|
||||
import { issue, organisation, project } from "@/lib/server";
|
||||
import { getAuthHeaders, getServerURL } from "@/lib/utils";
|
||||
|
||||
function Index() {
|
||||
const user = JSON.parse(localStorage.getItem("user") || "{}") as UserRecord;
|
||||
@@ -132,7 +131,7 @@ function Index() {
|
||||
setSelectedProject((prev) => prev || projects[0] || null);
|
||||
}, [projects]);
|
||||
|
||||
const refetchIssues = async (projectKey: string) => {
|
||||
const refetchIssues = async () => {
|
||||
try {
|
||||
await issue.byProject({
|
||||
projectId: selectedProject?.Project.id || 0,
|
||||
@@ -155,7 +154,7 @@ function Index() {
|
||||
useEffect(() => {
|
||||
if (!selectedProject) return;
|
||||
|
||||
void refetchIssues(selectedProject.Project.key);
|
||||
void refetchIssues();
|
||||
}, [selectedProject]);
|
||||
|
||||
return (
|
||||
@@ -196,7 +195,7 @@ function Index() {
|
||||
projectId={selectedProject?.Project.id}
|
||||
completeAction={async () => {
|
||||
if (!selectedProject) return;
|
||||
await refetchIssues(selectedProject.Project.key);
|
||||
await refetchIssues();
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
@@ -235,7 +234,6 @@ function Index() {
|
||||
<ResizablePanel id={"left"} minSize={400}>
|
||||
{/* issues list (table) */}
|
||||
<IssuesTable
|
||||
project={selectedProject}
|
||||
issuesData={issues}
|
||||
columns={{ description: false }}
|
||||
issueSelectAction={setSelectedIssue}
|
||||
|
||||
@@ -3,7 +3,6 @@ import { useCallback, useEffect, useState } from "react";
|
||||
import { OrganisationSelect } from "@/components/organisation-select";
|
||||
import { SettingsPageLayout } from "@/components/settings-page-layout";
|
||||
import { organisation } from "@/lib/server";
|
||||
import { getAuthHeaders, getServerURL } from "@/lib/utils";
|
||||
|
||||
function Organisations() {
|
||||
const user = JSON.parse(localStorage.getItem("user") || "{}") as UserRecord;
|
||||
|
||||
@@ -1,16 +1,14 @@
|
||||
import type { IssueResponse, ProjectResponse } from "@issue/shared";
|
||||
import type { IssueResponse } from "@issue/shared";
|
||||
import Avatar from "@/components/avatar";
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
export function IssuesTable({
|
||||
project,
|
||||
issuesData,
|
||||
columns = {},
|
||||
issueSelectAction,
|
||||
className,
|
||||
}: {
|
||||
project: ProjectResponse;
|
||||
issuesData: IssueResponse[];
|
||||
columns?: { id?: boolean; title?: boolean; description?: boolean; assignee?: boolean };
|
||||
issueSelectAction?: (issue: IssueResponse) => void;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as React from "react";
|
||||
import type * as React from "react";
|
||||
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
import * as React from "react"
|
||||
import * as LabelPrimitive from "@radix-ui/react-label"
|
||||
import * as LabelPrimitive from "@radix-ui/react-label";
|
||||
import type * as React from "react";
|
||||
|
||||
import { cn } from "@/lib/utils"
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
function Label({
|
||||
className,
|
||||
...props
|
||||
}: React.ComponentProps<typeof LabelPrimitive.Root>) {
|
||||
return (
|
||||
<LabelPrimitive.Root
|
||||
data-slot="label"
|
||||
className={cn(
|
||||
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
|
||||
className
|
||||
)}
|
||||
{...props}
|
||||
/>
|
||||
)
|
||||
function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>) {
|
||||
return (
|
||||
<LabelPrimitive.Root
|
||||
data-slot="label"
|
||||
className={cn(
|
||||
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
|
||||
className,
|
||||
)}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export { Label }
|
||||
export { Label };
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Loader2Icon, Loader } from "lucide-react";
|
||||
import { Loader } from "lucide-react";
|
||||
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as React from "react";
|
||||
import type * as React from "react";
|
||||
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
|
||||
@@ -3,6 +3,6 @@ export * as organisation from "./organisation";
|
||||
export * as project from "./project";
|
||||
|
||||
export type ServerQueryInput = {
|
||||
onSuccess?: (data: any, res: Response) => void;
|
||||
onError?: (error: any) => void;
|
||||
onSuccess?: (data: unknown, res: Response) => void;
|
||||
onError?: (error: unknown) => void;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user