Skip to content

Commit f26e68f

Browse files
author
Philip Halsall
committed
hardcoding the value to stop possible impact on performance
1 parent 4c3d9e4 commit f26e68f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/theme/Footer/index.tsx

+1-7
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,6 @@ import WeChatLogo from '@site/static/svg/socials/wechat_24x24.svg';
1515
import YoutubeLogo from '@site/static/svg/socials/youtube_24x24.svg';
1616
import { FormSubmitUrl } from '@site/src/constants';
1717

18-
function getCurrentYear(){
19-
const today = new Date();
20-
const year = today.getFullYear();
21-
return year;
22-
}
23-
2418
function Footer(): JSX.Element | null {
2519
const [email, setEmail] = React.useState('');
2620
const [isSubmitted, setIsSubmitted] = React.useState(false);
@@ -236,7 +230,7 @@ function Footer(): JSX.Element | null {
236230
</ul>
237231
</div>
238232
<div className={styles.minaFooter_legals__info}>
239-
©{getCurrentYear()} Mina Foundation. All rights reserved.
233+
©2024 Mina Foundation. All rights reserved.
240234
</div>
241235
</div>
242236
</footer>

0 commit comments

Comments
 (0)