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

Commit 1ff74b0

Browse files
authored
"Cody" in navbar not "Cody AI" (#63429)
The name of the product is "Cody", not "Cody AI". Also, "AI" just looks dumb and hype-y. ## Test plan View the navbar and ensure it reads "Cody" not "Cody AI". ## Changelog - In the navbar, Cody is now just "Cody" not "Cody AI".
1 parent ef73ae6 commit 1ff74b0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

client/web-sveltekit/src/routes/navigation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const mainNavigation: (NavigationMenu | NavigationEntry)[] = [
4343
},
4444
},
4545
{
46-
label: 'Cody AI',
46+
label: 'Cody',
4747
icon: ISgCody,
4848
href: '/cody',
4949
isCurrent(this: NavigationMenu, page) {
@@ -82,7 +82,7 @@ export const dotcomMainNavigation: (NavigationMenu | NavigationEntry)[] = [
8282
href: '/search',
8383
},
8484
{
85-
label: 'Cody AI',
85+
label: 'Cody',
8686
icon: ISgCody,
8787
href: '/cody',
8888
children: [

client/web/src/nav/GlobalNavbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ export const InlineNavigationPanel: FC<InlineNavigationPanelProps> = props => {
367367
const codyNavigation = hideCodyDropdown ? (
368368
<NavItem icon={() => <CodyLogoWrapper />} key="cody">
369369
<NavLink variant={navLinkVariant} to={disableCodyFeatures ? PageRoutes.Cody : PageRoutes.CodyChat}>
370-
Cody AI
370+
Cody
371371
</NavLink>
372372
</NavItem>
373373
) : (
@@ -376,7 +376,7 @@ export const InlineNavigationPanel: FC<InlineNavigationPanelProps> = props => {
376376
toggleItem={{
377377
path: isSourcegraphDotCom ? CodyProRoutes.Manage : PageRoutes.Cody,
378378
icon: () => <CodyLogoWrapper />,
379-
content: 'Cody AI',
379+
content: 'Cody',
380380
variant: navLinkVariant,
381381
}}
382382
routeMatch={routeMatch}

client/web/src/nav/__snapshots__/GlobalNavbar.test.tsx.snap

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/web/src/nav/new-global-navigation/NewGlobalNavigationBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ const SidebarNavigation: FC<SidebarNavigationProps> = props => {
378378
</li>
379379

380380
<NavItemLink url={PageRoutes.Cody} icon={CodyLogo} onClick={handleNavigationClick}>
381-
Cody AI
381+
Cody
382382
</NavItemLink>
383383

384384
{authenticatedUser && (

0 commit comments

Comments
 (0)