1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00

Remove defaultProps from TypeScript components

This commit is contained in:
Mark McDowall
2024-12-21 16:42:25 -08:00
parent 9a7ddd751e
commit a90c13e86f
3 changed files with 4 additions and 27 deletions
@@ -42,7 +42,6 @@ interface IndexerSelectInputConnectorProps {
name: string;
value: number;
includeAny?: boolean;
values: object[];
onChange: (change: EnhancedSelectInputChanged<number>) => void;
}
@@ -74,8 +73,4 @@ function IndexerSelectInput({
);
}
IndexerSelectInput.defaultProps = {
includeAny: false,
};
export default IndexerSelectInput;