diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-31 11:19:48 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-31 11:19:48 +0200 |
commit | 00b8bdac8f4fd2f054ca1e30b58556944bf49f8e (patch) | |
tree | f10abfd5d6a00fab47346b61950290dbdb405e7d /components | |
parent | 1bd37ff86e5d5e2397b77c10fcc90e80bfbfce49 (diff) |
got rid of type errors
Diffstat (limited to 'components')
-rw-r--r-- | components/tweaks.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/tweaks.tsx b/components/tweaks.tsx index b5ce2ec..35ce3e9 100644 --- a/components/tweaks.tsx +++ b/components/tweaks.tsx @@ -103,7 +103,7 @@ export const Tweaks = (props: TweakProps) => { ] return ( <> - <SlideFade in={!showTweaks} animateOpacity> + <SlideFade in={!showTweaks}> <Box position="absolute" zIndex="overlay" @@ -118,7 +118,7 @@ export const Tweaks = (props: TweakProps) => { /> </Box> </SlideFade> - <SlideFade in={showTweaks} animateOpacity> + <SlideFade in={showTweaks}> <Box bg="alt.100" w="xs" |