Skip to content

Commit 601c201

Browse files
changed edit team score to post team score, implementation pending
2 parents 667840f + d8183b9 commit 601c201

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

src/components/sidebar.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
"use client"
22

3-
import Link from "next/link";
43
import { ScrollArea } from "@/components/ui/scroll-area";
5-
import { UsersIcon, GroupIcon, Search, } from "lucide-react";
4+
5+
import { GroupIcon, Lightbulb, UsersIcon } from "lucide-react";
6+
import Link from "next/link";
7+
68

79
export function Sidebar() {
810
const navigation = [
911
{ name: "Users", href: "/users", icon: UsersIcon },
1012
{ name: "Teams", href: "/teams", icon: GroupIcon },
13+
{ name: "Ideas", href: "/idea", icon: Lightbulb },
1114
];
1215

1316
return (

src/components/table/data-table-pagination.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import { type Table } from "@tanstack/react-table"
22
import {
33
ChevronLeft,
4-
ChevronRight,
5-
ChevronsLeft,
6-
ChevronsRight,
4+
ChevronRight
75
} from "lucide-react"
86

97
import { Button } from "../ui/button"

0 commit comments

Comments
 (0)