Skip to content

Commit 33ac599

Browse files
committed
pointer and beta
1 parent 20a396c commit 33ac599

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/components/SupportAI.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,21 @@ function Messages({
6464
{message.content}
6565
</Markdown>
6666
{message.role === "assistant" && message.queryId && (
67-
<div className="not-content ml-4 flex gap-2 self-start">
67+
<div className="not-content flex gap-2 self-start">
6868
{feedbackGiven.has(message.queryId) ? (
6969
<span>Thanks for your feedback!</span>
7070
) : (
7171
<>
7272
<button
7373
onClick={() => handleFeedback(message.queryId!, true)}
74-
className="rounded bg-transparent p-2"
74+
className="cursor-pointer rounded bg-transparent p-2"
7575
title="Thumbs up"
7676
>
7777
<MdOutlineThumbUp className="size-6 hover:text-green-600" />
7878
</button>
7979
<button
8080
onClick={() => handleFeedback(message.queryId!, false)}
81-
className="rounded bg-transparent p-2"
81+
className="cursor-pointer rounded bg-transparent p-2"
8282
title="Thumbs down"
8383
>
8484
<MdOutlineThumbDown className="size-6 hover:text-red-600" />

src/content/docs/support/ai.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
2-
title: Support AI
2+
title: Support AI (Beta)
33
tableOfContents: false
44
sidebar:
55
order: 8
6+
label: Support AI
7+
badge: Beta
68
---
79

810
import SupportAI from "~/components/SupportAI.tsx";

0 commit comments

Comments
 (0)