diff --git a/ui/src/components/AccountPage/index.tsx b/ui/src/components/AccountPage/index.tsx index 8809a70b8..bbb5baa35 100644 --- a/ui/src/components/AccountPage/index.tsx +++ b/ui/src/components/AccountPage/index.tsx @@ -14,7 +14,6 @@ const AccountPage = (props: AccountObj): JSX.Element => { const { heading, copyrightText } = props.data; const currentYear = new Date().getFullYear(); - const previousYear = currentYear - 1; return ( // eslint-disable-next-line react/no-unknown-property @@ -27,7 +26,7 @@ const AccountPage = (props: AccountObj): JSX.Element => {
{`© ${previousYear}-${currentYear} ${copyrightText}`}
+{`© ${currentYear} ${copyrightText}`}