-
- {isPanelCollapsed ? _t("action|expand") : _t("action|collapse")}
-
-
- {IS_MAC
- ? "⌘ + ⇧ + D"
- : _t(ALTERNATE_KEY_NAME[Key.CONTROL]) +
- " + " +
- _t(ALTERNATE_KEY_NAME[Key.SHIFT]) +
- " + D"}
-
-
+ caption={
+ IS_MAC
+ ? "⌘ + ⇧ + D"
+ : _t(ALTERNATE_KEY_NAME[Key.CONTROL]) +
+ " + " +
+ _t(ALTERNATE_KEY_NAME[Key.SHIFT]) +
+ " + D"
}
/>
diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx
index 00130a92593..a4fad70921a 100644
--- a/src/components/views/voip/CallView.tsx
+++ b/src/components/views/voip/CallView.tsx
@@ -39,7 +39,6 @@ import IconizedContextMenu, {
IconizedContextMenuOptionList,
} from "../context_menus/IconizedContextMenu";
import { aboveRightOf, ContextMenuButton, useContextMenu } from "../../structures/ContextMenu";
-import { Alignment } from "../elements/Tooltip";
import { ButtonEvent } from "../elements/AccessibleButton";
import AccessibleTooltipButton from "../elements/AccessibleTooltipButton";
import FacePile from "../elements/FacePile";
@@ -103,7 +102,7 @@ const DeviceButton: FC