File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export function ControlSelect<T>({
2626
2727 const baseSelectProps : BaseReactSelectProps = {
2828 styles : {
29- container : ( base : { } ) : CSSObjectWithLabel => ( {
29+ container : ( base ) : CSSObjectWithLabel => ( {
3030 ...base ,
3131 gridArea : "control" ,
3232 boxShadow : theme . boxShadow . input ,
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ import { Component } from "react";
22
33type Props = {
44 children : React . ReactNode ;
5- fallback : ( err : any ) => React . ReactNode ;
5+ fallback : ( err : unknown ) => React . ReactNode ;
66} ;
77
88export class ErrorBoundary extends Component < Props > {
99 state = {
1010 err : undefined ,
1111 } ;
1212
13- static getDerivedStateFromError ( err : any ) {
13+ static getDerivedStateFromError ( err : unknown ) {
1414 return {
1515 err,
1616 } ;
Original file line number Diff line number Diff line change 22 "compilerOptions" : {
33 "target" : " es6" ,
44 "module" : " commonjs" ,
5+ "moduleResolution" : " bundler" ,
56 "jsx" : " react-jsx" ,
67 "noEmit" : true ,
78 "strict" : true ,
You can’t perform that action at this time.
0 commit comments