Skip to content

Commit

Permalink
ui: fix dashboard links
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 committed Jun 13, 2024
1 parent 8e9be0f commit 6209dc2
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/app/(main)/(admin)/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ function TaskStats () {
icon={ListTodoIcon}
value={data?.SUCCEED ?? 0}
>
<div className="mt-2">
<Link href="/import-tasks" className="text-xs flex items-center gap-1 transition-colors text-muted-foreground hover:text-foreground">
View all tasks <ArrowRightIcon size="1em" />
</Link>
</div>
</OverviewCard>
);
}
Expand Down Expand Up @@ -91,7 +86,7 @@ function ChatStats () {
<code>{data?.chat_messages ?? 0}</code>
</span>
</span>
<Link href="#" className="text-xs inline-flex items-center gap-1 transition-colors text-muted-foreground hover:text-foreground">
<Link href="/c" className="text-xs inline-flex items-center gap-1 transition-colors text-muted-foreground hover:text-foreground">
View all chats <ArrowRightIcon size="1em" />
</Link>
</div>
Expand Down

0 comments on commit 6209dc2

Please sign in to comment.