Zoom web SDK showing black screen after join

Hi,
Am facing issues with web-sdk, It is showing a black screen after calling ZoomMtg.join and not showing any error or success. It only shows a black screen after joining.

SDK version : “@zoomus/websdk”: “^2.17.0”
React version : “react”: “^17.0.1”

Sample code which I am using

import { ZoomMtg } from "@zoomus/websdk";

ZoomMtg.setZoomJSLib('https://source.zoom.us/2.17.0/lib', '/av');
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();

ZoomMtg.init({
    debug: true,
    leaveUrl: process.env.REACT_APP_ZOOM_LEAVE_URL,
    isSupportAV: true,
    meetingInfo: [
        // optional
        "topic",
        "host",
        "mn",
        "participant",
        "dc",
        "enctype",
        "report",
    ],
    success: (success) => {
        ZoomMtg.join({
            signature: signature,
            sdkKey: process.env.REACT_APP_ZOOM_SDK_KEY,
            meetingNumber: meeting.liveSessionDetails.id,
            userName: 'Presenter', 
            passWord: meeting.liveSessionDetails.password,
            zak: zak,
            success: (success) => {
                ZoomMtg.showInviteFunction({
                    show: false
                });

                return true;
            },
            error: (error) => {
                return false;
            },
        });
    },
    error: (error) => {
        return false;
    },
});

I have been using this code/meeting SDK past few years, It was working fine from last week onwards this issue is getting after updating to 2.17.0.

Thanks and Regards

Hi @WebDev-neyyar
Thanks for reaching out to us! I hear that you are having issues with the Zoom web meeting SDK.
could you please try updating to the latest version which is 2.18.0 and try again

I’ve the same issue using version 2.18.0
with this error:
TypeError: m.AK.connectSocket is not a function

I had the same issue, and I got a note from zoom telling u if u want to use client view then ur react version should be 16 or less to work with u.