Skip to content

Commit 59be6f7

Browse files
t3dotggclaude
andauthored
fix(web): simplify the desktop-managed server update banner copy (#6549)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 5304f3e commit 59be6f7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/src/versionSkew.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ describe("versionSkew", () => {
101101
"Update the Remote server so they stay in sync.",
102102
);
103103
expect(serverUpdateGuidance("desktop-managed", "Desktop server")).toBe(
104-
"The Desktop server is run by the T3 Code desktop app on its machine — update the desktop app there to sync them.",
104+
"Update the desktop app that runs the Desktop server.",
105105
);
106106
expect(serverUpdateGuidance(null, "Local server")).toBe(
107107
"Relaunch the Local server with the copied command to sync them.",

apps/web/src/versionSkew.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function serverUpdateGuidance(
7373
case "respawn":
7474
return `Update the ${serverLabel} so they stay in sync.`;
7575
case "desktop-managed":
76-
return `The ${serverLabel} is run by the T3 Code desktop app on its machine — update the desktop app there to sync them.`;
76+
return `Update the desktop app that runs the ${serverLabel}.`;
7777
default:
7878
return `Relaunch the ${serverLabel} with the copied command to sync them.`;
7979
}

0 commit comments

Comments
 (0)