remove unused import to pass lint & revert package.json

This commit is contained in:
SammCheese 2023-04-15 21:53:33 +02:00
parent 2edd032ec7
commit 2ec4f5af10
No known key found for this signature in database
GPG Key ID: 28CFE2321A140BA1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"version": "0.0.1",
"scripts": {
"prepare": "cd ../../../ && husky install invokeai/frontend/web/.husky",
"dev": "concurrently \"vite dev --host\" \"yarn run theme:watch\"",
"dev": "concurrently \"vite dev\" \"yarn run theme:watch\"",
"build": "yarn run lint && vite build",
"preview": "vite preview",
"lint:madge": "madge --circular src/main.tsx",

View File

@ -1,5 +1,5 @@
import { Box, Flex, Grid } from '@chakra-ui/react';
import React, { useState } from 'react';
import { useState } from 'react';
import ModelSelect from './ModelSelect';
import StatusIndicator from './StatusIndicator';