no log: Fix compile errors

pull/1638/head
LASER-Yi 3 years ago
parent 65e9a029fe
commit a87a1fad8f
No known key found for this signature in database
GPG Key ID: BB28903D50A1D408

@ -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;
}

Loading…
Cancel
Save