Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
fix tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuel Suriano committed Mar 21, 2022
1 parent a405957 commit fcec16a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gatsby-theme-mate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@
"@types/react-headroom": "^2.2.2",
"@types/react-helmet": "^6.1.2",
"@types/rebass": "^4.0.9",
"typescript": "^4.3.5"
"typescript": "^4.6.2"
}
}
2 changes: 1 addition & 1 deletion gatsby-theme-mate/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Header = () => {
</Flex>
</RebassLink>
<Flex mr={[0, 3, 5]}>
{Object.keys(SECTION)
{(Object.keys(SECTION) as Array<keyof typeof SECTION>)
.filter((id) => id !== 'home')
.map((id) => (
<Box key={id} ml={[2, 3]} color="background" fontSize={[2, 3]}>
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14314,10 +14314,10 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=

typescript@^4.3.5:
version "4.3.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==
typescript@^4.6.2:
version "4.6.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.2.tgz#fe12d2727b708f4eef40f51598b3398baa9611d4"
integrity sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==

unbox-primitive@^1.0.1:
version "1.0.1"
Expand Down

0 comments on commit fcec16a

Please sign in to comment.