Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/KanbanBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useLinear, Status } from "../context/LinearContext";
import IssueCard from "./IssueCard";

const STATUS_CONFIG: Record<Status, { label: string; color: string }> = {
backlog: { label: "Backlog", color: "text-status-backlog" },
backlog: { label: "FRONT LOG", color: "text-status-backlog" },
todo: { label: "Todo", color: "text-status-todo" },
"in-progress": { label: "In Progress", color: "text-status-progress" },
"in-review": { label: "In Review", color: "text-status-review" },
Expand Down
4 changes: 2 additions & 2 deletions src/context/LinearContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const initialIssues: Issue[] = [
{
id: "3",
identifier: "PLS-3",
title: "Design new landing page",
title: "Design OLD landing page",
description:
"Create a modern landing page design with hero section and feature cards",
status: "todo",
Expand Down Expand Up @@ -186,7 +186,7 @@ const initialIssues: Issue[] = [
{
id: "10",
identifier: "PLS-10",
title: "Add export functionality",
title: "Remove functionalityDO IT",
description: "Allow users to export their data in CSV and JSON formats",
status: "backlog",
priority: "low",
Expand Down