diff --git a/src/locales/en.ts b/src/locales/en.ts index 552c273f0..ace832db8 100644 --- a/src/locales/en.ts +++ b/src/locales/en.ts @@ -761,7 +761,7 @@ const en = { 'Accelerating research and promoting new discoveries for children affected with cancer and structural birth defects.', accessLargeScale: 'Data from over {count} samples, including whole genome sequencing (WGS) and RNA-Sequencing, is available to empower your research today.', - login: 'Log in', + login: 'Login', signup: 'Sign up', }, dashboard: { diff --git a/src/views/LandingPage/TopBanner/LoginForm/index.tsx b/src/views/LandingPage/TopBanner/LoginForm/index.tsx index 7b5610698..4f1fc59c2 100644 --- a/src/views/LandingPage/TopBanner/LoginForm/index.tsx +++ b/src/views/LandingPage/TopBanner/LoginForm/index.tsx @@ -1,6 +1,5 @@ import intl from 'react-intl-universal'; import { useKeycloak } from '@react-keycloak/web'; -import { Space } from 'antd'; import LandingPageButton from 'views/LandingPage/Components/LandingPageButton'; import LandingPageParagraph from 'views/LandingPage/Components/LandingPageParagraph'; import LandingPageTitle from 'views/LandingPage/Components/LandingPageTitle'; @@ -18,7 +17,6 @@ export const LoginForm = () => { const handleSignin = async () => { const url = keycloak.createLoginUrl({ - // eslint-disable-next-line max-len redirectUri: `${window.location.origin}/${ query.get(REDIRECT_URI_KEY) || STATIC_ROUTES.DASHBOARD }`, @@ -44,12 +42,12 @@ export const LoginForm = () => {