Useful to be able to hang up rather than close the window.

This commit is contained in:
Michael Kaye 2023-05-12 16:25:24 +01:00
parent 8dd58d7e5c
commit d270756443

View file

@ -419,7 +419,9 @@ export function InCallView({
}
}
buttons.push(<HangupButton key="6" onPress={onLeave} />);
buttons.push(
<HangupButton key="6" onPress={onLeave} data-testid="incall_leave" />
);
footer = <div className={styles.footer}>{buttons}</div>;
}