fix save rule

This commit is contained in:
Gabe Yuan
2023-09-12 17:20:56 +08:00
parent 5e8743dbb7
commit 56281f9e82
3 changed files with 55 additions and 55 deletions

View File

@@ -21,7 +21,12 @@ export default function Header({ setShowPopup }) {
<IconButton onClick={handleHomepage}>
<HomeIcon />
</IconButton>
<Box>
<Box
sx={{
userSelect: "none",
WebkitUserSelect: "none",
}}
>
{`${process.env.REACT_APP_NAME} v${process.env.REACT_APP_VERSION}`}
</Box>
</Stack>