Skip to content

Commit 620f822

Browse files
committed
Remove for now
1 parent 17b005a commit 620f822

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

webview-ui/src/components/account/AccountView.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { vscode } from "@src/utils/vscode"
1010
import { telemetryClient } from "@src/utils/TelemetryClient"
1111
import { ToggleSwitch } from "@/components/ui/toggle-switch"
1212

13-
import { History, PiggyBank, Router, SquareArrowOutUpRightIcon } from "lucide-react"
13+
import { History, PiggyBank, SquareArrowOutUpRightIcon } from "lucide-react"
1414

1515
type AccountViewProps = {
1616
userInfo: CloudUserInfo | null
@@ -108,7 +108,6 @@ export const AccountView = ({ userInfo, isAuthenticated, cloudApiUrl, onDone }:
108108
</div>
109109
)}
110110

111-
{/* Remote Control Toggle - only show if user has extension bridge enabled */}
112111
{userInfo?.extensionBridgeEnabled && (
113112
<div className="border-t border-vscode-widget-border pt-4 mt-4">
114113
<div className="flex items-center gap-3 mb-2">
@@ -161,10 +160,6 @@ export const AccountView = ({ userInfo, isAuthenticated, cloudApiUrl, onDone }:
161160
{t("account:cloudBenefitsTitle")}
162161
</h2>
163162
<ul className="text-vscode-descriptionForeground space-y-3 mx-auto px-8">
164-
<li className="flex items-start text-left gap-4">
165-
<Router size="16" className="shrink-0" />
166-
<span>{t("account:cloudBenefitWalkaway")}</span>
167-
</li>
168163
<li className="flex items-start text-left gap-4">
169164
<SquareArrowOutUpRightIcon size="16" className="shrink-0" />
170165
{t("account:cloudBenefitSharing")}

webview-ui/src/components/account/__tests__/AccountView.spec.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ vi.mock("@src/i18n/TranslationContext", () => ({
1111
"settings:common.done": "Done",
1212
"account:signIn": "Connect to Roo Code Cloud",
1313
"account:cloudBenefitsTitle": "Connect to Roo Code Cloud",
14-
"account:cloudBenefitWalkaway": "Follow and control tasks from anywhere with Roomote Control",
1514
"account:cloudBenefitSharing": "Share tasks with others",
1615
"account:cloudBenefitHistory": "Access your task history",
1716
"account:cloudBenefitMetrics": "Get a holistic view of your token consumption",
@@ -69,7 +68,6 @@ describe("AccountView", () => {
6968

7069
// Check that the benefits section is displayed
7170
expect(screen.getByRole("heading", { name: "Connect to Roo Code Cloud" })).toBeInTheDocument()
72-
expect(screen.getByText("Follow and control tasks from anywhere with Roomote Control")).toBeInTheDocument()
7371
expect(screen.getByText("Share tasks with others")).toBeInTheDocument()
7472
expect(screen.getByText("Access your task history")).toBeInTheDocument()
7573
expect(screen.getByText("Get a holistic view of your token consumption")).toBeInTheDocument()

0 commit comments

Comments
 (0)