no log: Fix compile errors

This commit is contained in:
LASER-Yi 2021-12-11 00:11:01 +08:00
parent 65e9a029fe
commit a87a1fad8f
No known key found for this signature in database
GPG Key ID: BB28903D50A1D408
1 changed files with 3 additions and 3 deletions

View File

@ -14,8 +14,8 @@ const SplitKeys = ["Tab", "Enter", " ", ",", ";"];
export interface ChipsProps {
disabled?: boolean;
defaultValue?: string[];
value?: string[];
defaultValue?: readonly string[];
value?: readonly string[];
onChange?: (v: string[]) => void;
}
@ -25,7 +25,7 @@ export const Chips: FunctionComponent<ChipsProps> = ({
disabled,
onChange,
}) => {
const [chips, setChips] = useState<string[]>(() => {
const [chips, setChips] = useState<Readonly<string[]>>(() => {
if (value) {
return value;
}