Fixes click events on the incoming call bar

This commit is contained in:
Josh Perez 2023-07-18 17:31:15 -04:00 committed by Fedor Indutnyy
parent 54d4734f05
commit 381e53297b
5 changed files with 35 additions and 9 deletions

View file

@ -68,7 +68,11 @@ function CallButton({
tooltipContent,
}: CallButtonProps): JSX.Element {
return (
<Tooltip content={tooltipContent} theme={Theme.Dark}>
<Tooltip
content={tooltipContent}
theme={Theme.Dark}
wrapperClassName="IncomingCallBar__button__container"
>
<button
aria-label={tooltipContent}
className={`IncomingCallBar__button IncomingCallBar__button--${classSuffix}`}