TP-52973 | build fix

This commit is contained in:
AyushRanjan
2024-01-25 17:43:46 +05:30
parent 2c4724bcea
commit 673cd09aaa
3 changed files with 2 additions and 4 deletions

View File

@@ -32,7 +32,7 @@
},
"dependencies": {
"@navi/dark-knight": "^1.0.13",
"@navi/web-ui": "^1.59.4",
"@navi/web-ui": "^1.59.6",
"@reduxjs/toolkit": "^1.9.7",
"@stoddabr/react-tableau-embed-live": "^0.3.26",
"antd": "^5.9.4",

View File

@@ -17,7 +17,6 @@ const UpdateIncidentBox: FC = () => {
...(incidentParticipants?.others || []),
];
//To do: add types here
const isUserParticipantList = participantsList?.some(
(participant: any) => participant.email === userEmail,
);

View File

@@ -24,7 +24,6 @@ const MultiSelectPickerWithSearch: FC<MultiSelectPickerWithSearchProps> = ({
multiSelect,
placeholder,
debounceDelay,
inputSize = 'full-width',
pickerWrapperClassName,
clearAll = false,
optionGroupKey = '',
@@ -172,7 +171,7 @@ const MultiSelectPickerWithSearch: FC<MultiSelectPickerWithSearchProps> = ({
return options.length > searchEnableThreshold ? (
<div className={styles['search-input-wrapper']}>
<SearchBarInput
inputSize={inputSize}
inputSize={'full-width'}
placeholder={placeholder}
value={searchValue}
onSearchChange={handleOnChange}