Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Change link URL and label, and display only for Pro #61873

Merged
merged 4 commits into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions client/web/src/cody/management/CodyManagementPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,17 +300,19 @@ export const CodyManagementPage: React.FunctionComponent<CodyManagementPageProps
Download the Cody extension in your editor to start using Cody.
</Text>
</div>
<div>
<Link
to="https://sourcegraph.com/community"
target="_blank"
rel="noreferrer"
className="text-muted text-sm"
>
<Icon svgPath={mdiHelpCircleOutline} className="mr-1" aria-hidden={true} />
Have feedback? Join our community Discord to let us know!
</Link>
</div>
{userIsOnProTier ? (
<div>
<Link
to="https://help.sourcegraph.com/"
target="_blank"
rel="noreferrer"
className="text-muted text-sm"
>
<Icon svgPath={mdiHelpCircleOutline} className="mr-1" aria-hidden={true} />
Join our community, read our docs, or get product/billing support
</Link>
</div>
) : null}
</div>
{editorGroups.map((group, index) => (
<div
Expand Down