Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
giriawu committed Jan 7, 2025
1 parent 884bb9d commit 69359fb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import { useRef } from 'react';
import BpkBreakpoint, { BREAKPOINTS } from '../../bpk-component-breakpoint';
import BpkSelectableChip, { BpkDismissibleChip, BpkIconChip, BpkDropdownChip, CHIP_TYPES } from '../../bpk-component-chip';
import FilterIconSm from '../../bpk-component-icon/sm/filter';
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
import BpkMobileScrollContainer from '../../bpk-component-mobile-scroll-container';
import BpkText, { TEXT_STYLES } from '../../bpk-component-text/src/BpkText';
import { cssModules } from '../../bpk-react-utils';
Expand Down Expand Up @@ -195,7 +194,7 @@ const RailChipGroup = ({
</div>
}
<BpkMobileScrollContainer
scrollerRef={(el: HTMLElement) => { scrollContainerRef.current = el }}
scrollerRef={(el: HTMLElement | null) => { scrollContainerRef.current = el }}
>
<ChipGroupContent ariaLabel={ariaLabel}
ariaMultiselectable={ariaMultiselectable}
Expand Down

0 comments on commit 69359fb

Please sign in to comment.