fix joinSession custom URL param name

This commit is contained in:
Nuwan 2025-01-29 14:38:16 +05:30
parent 1dd160e19f
commit 46111f041d
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ function JoinSessionButton({ session }) {
//const history = useHistory(); //const history = useHistory();
const [showAppLauncher, setShowAppLauncher] = useState(false); const [showAppLauncher, setShowAppLauncher] = useState(false);
const customQueryString = `act=joinSession&p=session~${session.id}`; const customQueryString = `act=joinSession&p=sessionId~${session.id}`;
const toggleAppLauncher = () => setShowAppLauncher(!showAppLauncher); const toggleAppLauncher = () => setShowAppLauncher(!showAppLauncher);