File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 110
110
"noUnusedVariables" : " warn" ,
111
111
"noVoidElementsWithChildren" : " warn" ,
112
112
"noVoidTypeReturn" : " warn" ,
113
- "useExhaustiveDependencies" : " warn " ,
113
+ "useExhaustiveDependencies" : " off " ,
114
114
"useHookAtTopLevel" : " warn" ,
115
115
"useIsNan" : " warn" ,
116
116
"useValidForDirection" : " warn" ,
Original file line number Diff line number Diff line change 61
61
"@babel/preset-react" : " ^7.18.6" ,
62
62
"@babel/preset-typescript" : " ^7.18.6" ,
63
63
"@babel/runtime" : " ^7.21.5" ,
64
- "@biomejs/biome" : " 1.5.2 " ,
64
+ "@biomejs/biome" : " 1.5.3 " ,
65
65
"@faker-js/faker" : " ^8.0.0" ,
66
66
"@ianvs/prettier-plugin-sort-imports" : " ^4.0.2" ,
67
67
"@linaria/core" : " ^6.0.0" ,
Original file line number Diff line number Diff line change @@ -305,7 +305,6 @@ export default function CommonFeatures({ direction }: Props) {
305
305
const [ sortColumns , setSortColumns ] = useState < readonly SortColumn [ ] > ( [ ] ) ;
306
306
const [ selectedRows , setSelectedRows ] = useState ( ( ) : ReadonlySet < number > => new Set ( ) ) ;
307
307
308
- // biome-ignore lint/correctness/useExhaustiveDependencies: countries won't change
309
308
const countries = useMemo ( ( ) : readonly string [ ] => {
310
309
return [ ...new Set ( rows . map ( ( r ) => r . country ) ) ] . sort ( new Intl . Collator ( ) . compare ) ;
311
310
// eslint-disable-next-line react-hooks/exhaustive-deps
You can’t perform that action at this time.
0 commit comments