Skip to content

Commit 1292c5f

Browse files
committed
fix(wanings): fix some eslint warnings
1 parent f5a4a14 commit 1292c5f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"dev": "vite build --watch",
3535
"build": "rimraf ./dist && tsc && vite build && publint --strict",
3636
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
37+
"lint:fix": "eslint . --ext ts,tsx --fix",
3738
"cipublish": "node scripts/publish.js"
3839
},
3940
"keywords": [

src/components/AutocompleteController.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Autocomplete, CircularProgress, TextField } from '@mui/material';
2-
import { Controller, useController } from 'react-hook-form';
32
import {
43
useAsyncFieldControllerLabels,
54
useFieldControllerLabels,
65
useFieldControllerWithOptionsLabels,
76
useOnErrorMessage,
87
} from '../hooks/index';
8+
import { useController } from 'react-hook-form';
99
import { useEffect, useState } from 'react';
1010
import type {
1111
AsyncFieldControllerProps,
@@ -91,8 +91,8 @@ export const AutocompleteController = <
9191
field: { onChange, value, ...other },
9292
fieldState: { invalid, error },
9393
} = useController({
94-
name,
9594
control,
95+
name,
9696
});
9797

9898
/**
@@ -101,11 +101,12 @@ export const AutocompleteController = <
101101
useEffect(() => {
102102
if (value) {
103103
const optionFound = options.find((option) => optionValueAccessor(option) === value);
104+
104105
if (optionFound) {
105106
setSelectedValue(optionFound as AutocompleteValue<Value, Multiple, DisableClearable, FreeSolo> | null);
106107
}
107108
}
108-
}, [value]);
109+
}, [value, optionValueAccessor, options]);
109110

110111
/**
111112
* Render

0 commit comments

Comments
 (0)