Handles the "still there?" meeting check by updating the visibility of the confirmation modal.
const options = { updateIsConfirmHereModalVisible: (isVisible) => console.log(`Modal visibility: ${isVisible}`),};await meetingStillThere(options);// Output:// "Modal visibility: true" Copy
const options = { updateIsConfirmHereModalVisible: (isVisible) => console.log(`Modal visibility: ${isVisible}`),};await meetingStillThere(options);// Output:// "Modal visibility: true"
The options for the meeting still-there check.
A promise that resolves when the modal visibility is updated.
Handles the "still there?" meeting check by updating the visibility of the confirmation modal.
Example