Skip to content

Commit 7e5092f

Browse files
committed
[Node] Update support wording
Signed-off-by: Herklos <herklos@drakkar.software>
1 parent 3f2378e commit 7e5092f

3 files changed

Lines changed: 11 additions & 12 deletions

File tree

packages/tentacles/Services/Interfaces/node_web_interface/src/components/Support/SupportCard.tsx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function SupportCard() {
7171
Support
7272
</CardTitle>
7373
<CardDescription>
74-
A private chat with the OctoBot team.
74+
Leave a secure, end-to-end encrypted message for the OctoBot team.
7575
</CardDescription>
7676
</CardHeader>
7777
<CardContent className="flex flex-col items-start gap-3">
@@ -81,15 +81,15 @@ export function SupportCard() {
8181

8282
{status === "disabled" && (
8383
<span className="text-xs text-muted-foreground">
84-
Support chat isn't available on this OctoBot.
84+
Support isn't available on this OctoBot.
8585
</span>
8686
)}
8787

8888
{status === "none" && (
8989
<>
9090
<span className="text-sm text-muted-foreground">
91-
Stuck on something? Open a ticket to chat with the team and share
92-
a debug snapshot in one click.
91+
Stuck on something? Leave a message and the team will get back to
92+
you. Share a debug snapshot in one click.
9393
</span>
9494
<Button size="sm" onClick={() => setOpen(true)}>
9595
New ticket
@@ -100,9 +100,8 @@ export function SupportCard() {
100100
{status === "pending" && (
101101
<>
102102
<span className="text-sm text-muted-foreground">
103-
The DRAKKAR-SOFTWARE team hasn't accepted your ticket yet. The
104-
chat opens automatically once they do — you can share logs after
105-
that.
103+
The DRAKKAR-SOFTWARE team hasn't accepted your ticket yet. Replies
104+
will appear here once they do. You can share logs after that.
106105
</span>
107106
<Button variant="outline" size="sm" asChild>
108107
<Link to="/support">View status</Link>
@@ -147,7 +146,7 @@ export function SupportCard() {
147146
<DialogHeader>
148147
<DialogTitle>New support ticket</DialogTitle>
149148
<DialogDescription>
150-
Tell us what's going on. We'll reply right here in this chat.
149+
Tell us what's going on. The team will get back to you, this is not a live chat.
151150
</DialogDescription>
152151
</DialogHeader>
153152
<div className="flex flex-col gap-3">

packages/tentacles/Services/Interfaces/node_web_interface/src/components/Support/SupportChat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export function SupportChat({
9999
{title.trim() || "Support ticket"}
100100
</h1>
101101
<p className="text-sm text-muted-foreground">
102-
A private chat with the OctoBot team. Replies appear here.
102+
End-to-end encrypted. The team responds asynchronously, replies appear here.
103103
</p>
104104
</div>
105105
<Button

packages/tentacles/Services/Interfaces/node_web_interface/src/routes/_layout/support.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function SupportPage() {
7777
if (!ticket || ticket.status === "disabled") {
7878
return (
7979
<EmptyState
80-
title="Support chat unavailable"
80+
title="Support unavailable"
8181
body="This OctoBot isn't configured to reach the support desk."
8282
/>
8383
)
@@ -87,7 +87,7 @@ function SupportPage() {
8787
return (
8888
<EmptyState
8989
title="No ticket yet"
90-
body="Open a ticket from Settings to start a private chat with the team."
90+
body="Open a ticket from Settings to leave a secure message for the team."
9191
action={
9292
<Button asChild>
9393
<Link to="/settings">Go to Settings</Link>
@@ -101,7 +101,7 @@ function SupportPage() {
101101
return (
102102
<EmptyState
103103
title="Waiting for the team"
104-
body="Your request has been delivered. This chat opens automatically as soon as someone picks it up."
104+
body="Your request has been delivered. The team will get back to you, it may take some time."
105105
action={
106106
<Button
107107
variant="ghost"

0 commit comments

Comments
 (0)