Skip to content
Merged
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
5 changes: 3 additions & 2 deletions components/console/not-implemented.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use client";
import { Construction, ArrowRight, Rocket, Github, BookOpen } from "lucide-react";
import Link from "next/link";

Expand Down Expand Up @@ -51,7 +52,7 @@ export function NotImplemented({
<ul className="space-y-2 w-full">
{items.map((item, i) => (
<li
key={i}
key={`not-implemented-suggestion-${item}`}
className="flex items-center gap-2 text-sm text-gray-600 dark:text-zinc-400 bg-gray-50 dark:bg-zinc-800/50 rounded-lg px-4 py-2 border border-gray-100 dark:border-zinc-800"
>
{i === 0 ? <Rocket className="w-4 h-4 text-gray-400 shrink-0" /> :
Expand All @@ -66,4 +67,4 @@ export function NotImplemented({
</div>
</div>
);
}
}
Loading