diff --git a/ts/components/basic/SessionDropdown.tsx b/ts/components/basic/SessionDropdown.tsx index 0b27a90da..eb00a1f42 100644 --- a/ts/components/basic/SessionDropdown.tsx +++ b/ts/components/basic/SessionDropdown.tsx @@ -17,15 +17,16 @@ type Props = { active?: boolean; onClick?: any; }>; + dataTestId?: string; }; export const SessionDropdown = (props: Props) => { - const { label, options } = props; + const { label, options, dataTestId } = props; const [expanded, setExpanded] = useState(!!props.expanded); const chevronOrientation = expanded ? 180 : 0; return ( -