Skip to content

Commit 77239eb

Browse files
authored
fix: GitHub casing across the platform (#6193)
1 parent 54f828c commit 77239eb

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

admin/app/authentication/github/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const InstanceGithubAuthenticationPage = observer(() => {
4444
loading: "Saving Configuration...",
4545
success: {
4646
title: "Configuration saved",
47-
message: () => `Github authentication is now ${value ? "active" : "disabled"}.`,
47+
message: () => `GitHub authentication is now ${value ? "active" : "disabled"}.`,
4848
},
4949
error: {
5050
title: "Error",
@@ -67,8 +67,8 @@ const InstanceGithubAuthenticationPage = observer(() => {
6767
<div className="relative container mx-auto w-full h-full p-4 py-4 space-y-6 flex flex-col">
6868
<div className="border-b border-custom-border-100 mx-4 py-4 space-y-1 flex-shrink-0">
6969
<AuthenticationMethodCard
70-
name="Github"
71-
description="Allow members to login or sign up to plane with their Github accounts."
70+
name="GitHub"
71+
description="Allow members to login or sign up to plane with their GitHub accounts."
7272
icon={
7373
<Image
7474
src={resolveGeneralTheme(resolvedTheme) === "dark" ? githubDarkModeImage : githubLightModeImage}

admin/core/components/auth-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const InstanceHeader: FC = observer(() => {
3030
case "google":
3131
return "Google";
3232
case "github":
33-
return "Github";
33+
return "GitHub";
3434
case "gitlab":
3535
return "GitLab";
3636
case "workspace":

app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"value": ""
7171
},
7272
"GITHUB_CLIENT_SECRET": {
73-
"description": "Github Client Secret",
73+
"description": "GitHub Client Secret",
7474
"value": ""
7575
},
7676
"NEXT_PUBLIC_API_BASE_URL": {

web/core/components/integration/github/root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export const GithubImporterRoot: React.FC = () => {
168168
<div className="space-y-4 rounded-[10px] border border-custom-border-200 bg-custom-background-100 p-4">
169169
<div className="flex items-center gap-2">
170170
<div className="h-10 w-10 flex-shrink-0">
171-
<Image src={GithubLogo} alt="GithubLogo" />
171+
<Image src={GithubLogo} alt="GitHubLogo" />
172172
</div>
173173
<div className="flex h-full w-full items-center justify-center">
174174
{integrationWorkflowData.map((integration, index) => (

web/core/constants/event-tracker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export const PRODUCT_TOUR_COMPLETED = "Product tour completed";
206206
export const PRODUCT_TOUR_SKIPPED = "Product tour skipped";
207207
// Dashboard Events
208208
export const CHANGELOG_REDIRECTED = "Changelog redirected";
209-
export const GITHUB_REDIRECTED = "Github redirected";
209+
export const GITHUB_REDIRECTED = "GitHub redirected";
210210
// Sidebar Events
211211
export const SIDEBAR_CLICKED = "Sidenav clicked";
212212
// Global View Events

0 commit comments

Comments
 (0)