diff --git a/components/SignupModal/index.tsx b/components/SignupModal/index.tsx index 5a28b70e..1e2070c0 100644 --- a/components/SignupModal/index.tsx +++ b/components/SignupModal/index.tsx @@ -1,4 +1,5 @@ import React, { useEffect, useState } from 'react' +import Link from 'next/link' import { useCookies } from 'react-cookie' import { useRouter } from 'next/router' import { Trans, useTranslation } from 'next-i18next' @@ -288,7 +289,7 @@ const SignupModal = (props: Props) => { - By signing up, I agree to the Privacy PolicyUsage Guidelines. + By signing up, I agree to the Privacy PolicyUsage Guidelines. diff --git a/components/WeaponHovercard/index.tsx b/components/WeaponHovercard/index.tsx index 08521ea8..c4d037af 100644 --- a/components/WeaponHovercard/index.tsx +++ b/components/WeaponHovercard/index.tsx @@ -124,13 +124,13 @@ const WeaponHovercard = (props: Props) => {
{t('modals.weapon.subtitles.ax_skills')}
- + AX1 {createPrimaryAxSkillString()}
{ (props.gridWeapon.ax && props.gridWeapon.ax[1].modifier && props.gridWeapon.ax[1].strength) ?
- + AX2 {createSecondaryAxSkillString()}
: ''}
diff --git a/pages/_app.tsx b/pages/_app.tsx index b1eb309e..a5d4e39c 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -17,7 +17,6 @@ function MyApp({ Component, pageProps }: AppProps) { console.log(`Logged in as user "${cookies.account.username}"`) accountState.account.authorized = true - accountState.account.language = cookies.account.language accountState.account.user = { id: cookies.account.user_id, username: cookies.account.username,