Skip to content

Commit

Permalink
[BOOKINGSG-6090-date-navigator][JZ|FY] Fix combobox-picker typing cha…
Browse files Browse the repository at this point in the history
…nge error
  • Loading branch information
Tan Jing Zhi committed Sep 26, 2024
1 parent 7ee1490 commit 83687fc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/time-range-picker/combobox-picker/combobox-picker.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { OpenChangeReason } from "@floating-ui/react";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import { ClearIcon } from "../../input/input.style";
import { ErrorMessage } from "../../form/form-label.style";
import { ClearIconContainer } from "../../input-range-select/input-range-select.style";
import { DropdownList } from "../../shared/dropdown-list-v2/dropdown-list";
import { ClearIcon } from "../../input/input.style";
import { DropdownListState } from "../../shared/dropdown-list-v2";
import { DropdownList } from "../../shared/dropdown-list-v2/dropdown-list";
import { ElementWithDropdown } from "../../shared/dropdown-wrapper";
import { ErrorMessage } from "../../form/form-label.style";
import { OpenChangeReason } from "@floating-ui/react";
import { RangeInputInnerContainer } from "../../shared/range-input-inner-container";
import { SelectorInput, Wrapper } from "../common.styles";
import { SimpleIdGenerator } from "../../util";
import { TimeFieldContainer } from "./combobox-picker.styles.tsx";
import { TimeHelper } from "../../util/time-helper";
import { SelectorInput, Wrapper } from "../common.styles";
import { TimeRangePickerProps, TimeRangePickerValue } from "../types";
import { TimeFieldContainer } from "./combobox-picker.styles.tsx";

type TimeRangeInputType = "start" | "end";
interface TimeChangeOptions {
Expand Down Expand Up @@ -418,7 +418,7 @@ export const ComboboxPicker = ({
offset={8}
alignment={alignment}
fitAvailableHeight
zIndex={dropdownZIndex}
customZIndex={dropdownZIndex}
/>
</DropdownListState>
{renderError()}
Expand Down

0 comments on commit 83687fc

Please sign in to comment.