Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit e714e16

Browse files
committed
post merge update
1 parent 6418aa2 commit e714e16

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/frontend/src/Components/Footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const listLinks = (links: Link[], translate: TFunction) => {
3838
href={link.link}
3939
isExternal
4040
>
41-
{translate(link.title)}
41+
{translate(link.title) as any}
4242
</ChakraLink>
4343
);
4444
})}

packages/frontend/src/layout/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,10 @@ function Page({ children }: { children?: object }) {
118118
paddingX={{ base: '16px', md: '4px', lg: '48px' }}
119119
spacing={10}
120120
>
121-
<Header />
122-
{children}
121+
<>
122+
<Header />
123+
{children}
124+
</>
123125
</Stack>
124126
<Marquee
125127
style={{

0 commit comments

Comments
 (0)