diff --git a/src/pages/LoginPage/LoginPage.test.jsx b/src/pages/LoginPage/LoginPage.test.jsx
index bceec0b43d..f03712926d 100644
--- a/src/pages/LoginPage/LoginPage.test.jsx
+++ b/src/pages/LoginPage/LoginPage.test.jsx
@@ -57,7 +57,7 @@ describe('LoginPage', () => {
render(, { wrapper: wrapper('/login') })
const githubLink = screen.getByRole('link', {
- name: /login with github/i,
+ name: /Log in with github/i,
})
expect(githubLink).toBeInTheDocument()
})
@@ -66,7 +66,7 @@ describe('LoginPage', () => {
render(, { wrapper: wrapper('/login') })
const sentryLink = screen.getByRole('link', {
- name: /login with sentry/i,
+ name: /Log in with sentry/i,
})
expect(sentryLink).toBeInTheDocument()
})
@@ -75,7 +75,7 @@ describe('LoginPage', () => {
render(, { wrapper: wrapper('/login') })
const gitlabLink = screen.getByRole('link', {
- name: /login with gitlab/i,
+ name: /Log in with gitlab/i,
})
expect(gitlabLink).toBeInTheDocument()
})
@@ -84,7 +84,7 @@ describe('LoginPage', () => {
render(, { wrapper: wrapper('/login') })
const bitBucketLink = screen.getByRole('link', {
- name: /login with bitbucket/i,
+ name: /Log in with bitbucket/i,
})
expect(bitBucketLink).toBeInTheDocument()
})
@@ -97,7 +97,7 @@ describe('LoginPage', () => {
render(, { wrapper: wrapper('/login/gh') })
const githubLink = screen.getByRole('link', {
- name: /login with github/i,
+ name: /Log in with github/i,
})
expect(githubLink).toBeInTheDocument()
})
diff --git a/src/services/navigation/useNavLinks.ts b/src/services/navigation/useNavLinks.ts
index 754a55f9c6..8e917a1a96 100644
--- a/src/services/navigation/useNavLinks.ts
+++ b/src/services/navigation/useNavLinks.ts
@@ -54,7 +54,7 @@ export function useNavLinks() {
isExternalLink: true,
},
login: {
- text: 'Login',
+ text: 'Log in',
path: ({ to }: { to?: string } = {}) => {
const query = qs.stringify({ to }, { addQueryPrefix: true })