diff options
Diffstat (limited to 'components/tweaks.tsx')
-rw-r--r-- | components/tweaks.tsx | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/components/tweaks.tsx b/components/tweaks.tsx index ab5a6a7..d337b59 100644 --- a/components/tweaks.tsx +++ b/components/tweaks.tsx @@ -43,13 +43,15 @@ export const Tweaks = (props: TweakProps) => { const [showTweaks, setShowTweaks] = useState(true) if (!showTweaks) { - return <Box position="absolute" zIndex="overlay" marginTop="2%" marginLeft="2%"> - <IconButton - aria-label="Settings" - icon={<SettingsIcon />} - onClick={() => setShowTweaks(true)} - /> - </Box> + return ( + <Box position="absolute" zIndex="overlay" marginTop="2%" marginLeft="2%"> + <IconButton + aria-label="Settings" + icon={<SettingsIcon />} + onClick={() => setShowTweaks(true)} + /> + </Box> + ) } return ( @@ -98,7 +100,7 @@ export const Tweaks = (props: TweakProps) => { </AccordionButton> <AccordionPanel> <Flex justifyContent="space-between"> - <Text>Kill orphans</Text> + <Text>Orphans</Text> <Switch colorScheme="purple" onChange={() => { |