mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 10:33:01 +00:00
renamed to Sprint
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { UserRecord } from "@issue/shared";
|
||||
import type { UserRecord } from "@sprint/shared";
|
||||
import { type FormEvent, useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
@@ -3,7 +3,7 @@ import {
|
||||
ISSUE_TITLE_MAX_LENGTH,
|
||||
type SprintRecord,
|
||||
type UserRecord,
|
||||
} from "@issue/shared";
|
||||
} from "@sprint/shared";
|
||||
|
||||
import { type FormEvent, useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
|
||||
@@ -3,7 +3,7 @@ import {
|
||||
ORG_NAME_MAX_LENGTH,
|
||||
ORG_SLUG_MAX_LENGTH,
|
||||
type OrganisationRecord,
|
||||
} from "@issue/shared";
|
||||
} from "@sprint/shared";
|
||||
import { type FormEvent, useState } from "react";
|
||||
import { useAuthenticatedSession } from "@/components/session-provider";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PROJECT_NAME_MAX_LENGTH, type ProjectRecord } from "@issue/shared";
|
||||
import { PROJECT_NAME_MAX_LENGTH, type ProjectRecord } from "@sprint/shared";
|
||||
import { type FormEvent, useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
import { useAuthenticatedSession } from "@/components/session-provider";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { DEFAULT_SPRINT_COLOUR, type SprintRecord } from "@issue/shared";
|
||||
import { DEFAULT_SPRINT_COLOUR, type SprintRecord } from "@sprint/shared";
|
||||
import { type FormEvent, useMemo, useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
import { useAuthenticatedSession } from "@/components/session-provider";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { IssueResponse, ProjectResponse, SprintRecord, UserRecord } from "@issue/shared";
|
||||
import type { IssueResponse, ProjectResponse, SprintRecord, UserRecord } from "@sprint/shared";
|
||||
import { Check, Link, Trash, X } from "lucide-react";
|
||||
import { useEffect, useRef, useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { TimerState } from "@issue/shared";
|
||||
import type { TimerState } from "@sprint/shared";
|
||||
import { useEffect, useState } from "react";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { parseError, timer } from "@/lib/server";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { IssueResponse } from "@issue/shared";
|
||||
import type { IssueResponse } from "@sprint/shared";
|
||||
import Avatar from "@/components/avatar";
|
||||
import StatusTag from "@/components/status-tag";
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/** biome-ignore-all lint/correctness/useExhaustiveDependencies: <> */
|
||||
|
||||
import { USER_NAME_MAX_LENGTH, USER_USERNAME_MAX_LENGTH } from "@issue/shared";
|
||||
import { USER_NAME_MAX_LENGTH, USER_USERNAME_MAX_LENGTH } from "@sprint/shared";
|
||||
import { AlertTriangle, X } from "lucide-react";
|
||||
import { useEffect, useState } from "react";
|
||||
import { useNavigate, useSearchParams } from "react-router-dom";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { OrganisationRecord, OrganisationResponse } from "@issue/shared";
|
||||
import type { OrganisationRecord, OrganisationResponse } from "@sprint/shared";
|
||||
import { useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
import { CreateOrganisation } from "@/components/create-organisation";
|
||||
|
||||
@@ -6,7 +6,7 @@ import {
|
||||
type ProjectRecord,
|
||||
type ProjectResponse,
|
||||
type SprintRecord,
|
||||
} from "@issue/shared";
|
||||
} from "@sprint/shared";
|
||||
import { ChevronDown, ChevronUp, EllipsisVertical, Plus, X } from "lucide-react";
|
||||
import { type ReactNode, useCallback, useEffect, useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { ProjectRecord, ProjectResponse } from "@issue/shared";
|
||||
import type { ProjectRecord, ProjectResponse } from "@sprint/shared";
|
||||
import { useState } from "react";
|
||||
import { CreateProject } from "@/components/create-project";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { UserRecord } from "@issue/shared";
|
||||
import type { UserRecord } from "@sprint/shared";
|
||||
import { createContext, useCallback, useContext, useEffect, useRef, useState } from "react";
|
||||
import { Navigate, useLocation } from "react-router-dom";
|
||||
import Loading from "@/components/loading";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { DEFAULT_SPRINT_COLOUR, type SprintRecord } from "@issue/shared";
|
||||
import { DEFAULT_SPRINT_COLOUR, type SprintRecord } from "@sprint/shared";
|
||||
import { cn, DARK_TEXT_COLOUR, isLight } from "@/lib/utils";
|
||||
|
||||
export default function SmallSprintDisplay({
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { UserRecord } from "@issue/shared";
|
||||
import type { UserRecord } from "@sprint/shared";
|
||||
import Avatar from "@/components/avatar";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { SprintRecord, UserRecord } from "@issue/shared";
|
||||
import type { SprintRecord, UserRecord } from "@sprint/shared";
|
||||
import { useState } from "react";
|
||||
import SmallSprintDisplay from "@/components/small-sprint-display";
|
||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { DEFAULT_STATUS_COLOUR } from "@issue/shared";
|
||||
import { DEFAULT_STATUS_COLOUR } from "@sprint/shared";
|
||||
import { cn, DARK_TEXT_COLOUR, isLight } from "@/lib/utils";
|
||||
|
||||
export default function StatusTag({
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { TimerState } from "@issue/shared";
|
||||
import type { TimerState } from "@sprint/shared";
|
||||
import { useEffect, useState } from "react";
|
||||
import { toast } from "sonner";
|
||||
import { parseError, timer } from "@/lib/server";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { UserRecord } from "@issue/shared";
|
||||
import type { UserRecord } from "@sprint/shared";
|
||||
import { useState } from "react";
|
||||
import SmallUserDisplay from "@/components/small-user-display";
|
||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
||||
|
||||
Reference in New Issue
Block a user