diff --git a/packages/design-system/package.json b/packages/design-system/package.json index 8e4d1f3..9b41231 100644 --- a/packages/design-system/package.json +++ b/packages/design-system/package.json @@ -15,7 +15,7 @@ "scripts": { "build": "npm run fonts && npm run tailwind", "dev": "npm run fonts && npm run tailwind:watch", - "fonts": "if not exist .\\dist mkdir .\\dist && xcopy .\\src\\fonts .\\dist\\fonts /E /I", + "fonts": "mkdir -p ./dist && cp -r ./src/fonts ./dist/fonts", "_comment": "Changed the code from line 14, which is a script for fonts from {mkdir -p ./dist && cp -r ./src/fonts ./dist/fonts} to use on Windows {if not exist .\\dist mkdir .\\dist && xcopy .\\src\\fonts .\\dist\\fonts /E /I}", "format": "prettier . --check", "format:fix": "prettier . --write", diff --git a/packages/design-system/src/ui/input/selectField.tsx b/packages/design-system/src/ui/input/selectField.tsx index 02deaac..66ef7b0 100644 --- a/packages/design-system/src/ui/input/selectField.tsx +++ b/packages/design-system/src/ui/input/selectField.tsx @@ -1,9 +1,8 @@ import React, { forwardRef, useState } from "react"; import { Description } from "./description"; import { Field } from "./field"; -import { Combobox, Input, Options, Option, Button } from "./combobox"; +import { Combobox, Input, Options, Option } from "./combobox"; import { Label } from "./label"; -import { ChevronDownIcon } from "../../icons/ChevronDown"; import { twMerge } from "tailwind-merge"; /*