diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 8f82a46..1613247 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -97,6 +97,7 @@ "notistack": "^2.0.5", "react": "^18.1.0", "react-dom": "^18.1.0", - "react-icons": "^4.3.1" + "react-icons": "^4.3.1", + "react-use": "^17.4.0" } } diff --git a/packages/desktop/src/components/KeyboardShortcutLabel.tsx b/packages/desktop/src/components/KeyboardShortcutLabel.tsx index 7c5fece..aee2772 100644 --- a/packages/desktop/src/components/KeyboardShortcutLabel.tsx +++ b/packages/desktop/src/components/KeyboardShortcutLabel.tsx @@ -2,13 +2,6 @@ import React from 'react'; import { Box, styled, Typography } from '@mui/material'; import { blueGrey } from '@mui/material/colors'; -const StyledBox = styled(Box)(({ theme }) => ({ - px: theme.spacing(1), - py: theme.spacing(0.5), - border: `1px solid`, - borderColor: blueGrey[50], -})); - export default function KeyboardShortcutLabel({ label }: { label: string }) { return (