Skip to content

Commit

Permalink
client/web: hide unimplemented links
Browse files Browse the repository at this point in the history
Hiding links to unimplemented settings pages.

Updates #10261

Signed-off-by: Sonia Appasamy <sonia@tailscale.com>
  • Loading branch information
soniaappasamy committed Nov 17, 2023
1 parent fb829ea commit 4302754
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions client/web/src/components/views/home-view.tsx
Expand Up @@ -46,12 +46,13 @@ export default function HomeView({
</Link>
</div>
<h2 className="mb-3">Settings</h2>
<SettingsCard
{/* TODO(sonia,will): hiding unimplemented settings pages until implemented */}
{/* <SettingsCard
link="/subnets"
className="mb-3"
title="Subnet router"
body="Add devices to your tailnet without installing Tailscale on them."
/>
/> */}
<SettingsCard
link="/ssh"
className="mb-3"
Expand All @@ -66,11 +67,11 @@ export default function HomeView({
: undefined
}
/>
<SettingsCard
{/* <SettingsCard
link="/serve"
title="Share local content"
body="Share local ports, services, and content to your Tailscale network or to the broader internet."
/>
/> */}
</div>
)
}
Expand Down

0 comments on commit 4302754

Please sign in to comment.