Skip to content

Commit

Permalink
redirect on leave issue fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
BhumiSalat committed Jun 24, 2024
1 parent de372a7 commit 99f0390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meetingContainer/MeetingContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ const MeetingContainer = () => {

const _handleMeetingLeft = () => {
if (redirectOnLeave && redirectOnLeave !== "undefined") {
window.top.location = redirectOnLeave;
window.location = redirectOnLeave;
} else {
setMeetingLeft(true);
}
Expand Down

0 comments on commit 99f0390

Please sign in to comment.