Plugin webview loading on windows machine but now on a mac machine

Hi, I am trying to develop a personal plugin for photoshop with a webview opening an auth0 url.
The webview displays my auth url on both of my windows machines.

I can see a loadstart log of the webview, but there is nothing but my refresh button loading on the webview.

Are there any configurations for mac that might effect webview behaviour?

        <div style={{ width: "100vw", height: "100vh" }}>
            <button onClick={handleOnClickRefresh}> Refresh </button> 
            <webview 
                id="login-webview"
                ref={webviewRef}
                src={authUrl}
                style={{ width: "100%", height: "100%" }}
                uxpAllowInspector="true"
            ></webview>
        </div>