We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afb1e6 commit d72d4e5Copy full SHA for d72d4e5
components/EndCallButton.tsx
@@ -26,7 +26,7 @@ const EndCallButton = () => {
26
27
const endCall = async () => {
28
await call.endCall();
29
- router.push("/");
+ router.push("/dashboard");
30
};
31
32
return (
components/MeetingRoom.tsx
@@ -61,7 +61,7 @@ const MeetingRoom = () => {
61
</div>
62
{/* video layout and call controls */}
63
<div className="fixed bottom-2 flex flex-wrap w-full items-center justify-center gap-4">
64
- <CallControls onLeave={() => router.push(`/`)} />
+ <CallControls onLeave={() => router.push(`/dashboard`)} />
65
66
<DropdownMenu>
67
<div className="flex items-center">
0 commit comments