File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
ui/src/components/AccountPage Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ const AccountPage = (props: AccountObj): JSX.Element => {
1414 const { heading, copyrightText } = props . data ;
1515
1616 const currentYear = new Date ( ) . getFullYear ( ) ;
17- const previousYear = currentYear - 1 ;
1817
1918 return (
2019 // eslint-disable-next-line react/no-unknown-property
@@ -27,7 +26,7 @@ const AccountPage = (props: AccountObj): JSX.Element => {
2726 </ div >
2827 < div className = "AccountPage__action" >
2928 < div className = "AccountPage__content" > { props ?. children } </ div >
30- < p className = "copyright_text" > { `© ${ previousYear } - ${ currentYear } ${ copyrightText } ` } </ p >
29+ < p className = "copyright_text" > { `© ${ currentYear } ${ copyrightText } ` } </ p >
3130 </ div >
3231 </ div >
3332 ) ;
You can’t perform that action at this time.
0 commit comments