diff --git a/src/home/CallTypeDropdown.tsx b/src/home/CallTypeDropdown.tsx index 9b02f350..f24d3d48 100644 --- a/src/home/CallTypeDropdown.tsx +++ b/src/home/CallTypeDropdown.tsx @@ -42,6 +42,12 @@ interface Props { export const CallTypeDropdown: FC = ({ callType, setCallType }) => { const { t } = useTranslation(); + const onAction = (key: React.Key) => { + setCallType(key.toString() as CallType); + }; + + const onClose = () => {}; + return (