Skip to content

Commit f08061f

Browse files
committed
fix after merging
fix after merging
1 parent 16aa05d commit f08061f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/apps/admin/src/lib/components/InputHandlesSelector/InputHandlesSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const InputHandlesSelector: FC<Props> = (props: Props) => {
9494
onChange={function onChange(value: MultiValue<SelectOption>) {
9595
props.onChange?.(
9696
value.map(v => ({
97-
handle: v.label,
97+
handle: v.label as string,
9898
userId: v.value as number,
9999
})),
100100
)

src/libs/ui/lib/components/form/form-groups/form-input/input-date-picker/InputDatePicker.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ interface InputDatePickerProps {
3131
readonly showYearPicker?: boolean
3232
readonly isClearable?: boolean
3333
readonly tabIndex?: number
34-
readonly isClearable?: boolean
3534
readonly classNameWrapper?: string
3635
}
3736

0 commit comments

Comments
 (0)