Compare commits

..

No commits in common. "504c2d277bf916ce098ee87b0f0cbb40c5436b95" and "6a4791eed3ac2fd1e90a8adacc4d081244f7233c" have entirely different histories.

2 changed files with 4 additions and 6 deletions

View File

@ -38,18 +38,16 @@
},
"scripts": {
"predev": "npm run generate-icons",
"dev": "npm run typecheck && vite",
"dev": "npx tsc --noEmit && vite",
"prebuild": "npm run generate-icons",
"lint": "eslint",
"build": "npm run typecheck && vite build",
"lint": "npx eslint",
"build": "npx tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run test:run",
"generate-licenses": "node scripts/generate-licenses.js",
"generate-icons": "node scripts/generate-icons.js",
"generate-icons:verbose": "node scripts/generate-icons.js --verbose",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",

View File

@ -1,4 +1,4 @@
import { TextInput, Button, Text, Flex, Switch } from '@mantine/core';
import { Group, TextInput, Button, Text, Flex, Switch } from '@mantine/core';
import LocalIcon from '../../shared/LocalIcon';
import { Tooltip } from '../../shared/Tooltip';
import { usePageSelectionTips } from '../../tooltips/usePageSelectionTips';