Okta PKCE Page Refreshed Multiple times

Description: We are using OKTA SSO login in one of our application. We are using the below package.
@okta/okta-auth-js”: “^5.5.0”,
@okta/okta-react”: “^6.2.0”,

We are using PKCE mode for SPA.

The issue here is each time we send a request there is a delay of 10-12 second consistently on each mentioned below call.
Below are the sequence of each calls.

https://dev-490079.okta.com/oauth2/aus39le04eDAfhtFN4x7/.well-known/openid-configuration

https://dev-490079.okta.com/oauth2/aus39le04eDAfhtFN4x7/v1/authorize?client_id=0oa15y3rlg5h0oBvc4x7&code_challenge=76sBgitOZ9jej81cd1b36L4uYkXAuaIjjERTtGLjTTg&code_challenge_method=S256&nonce=LKz0gMKAeA76A7fTewvRsan0lTUXcYkaRI1qARzN2K8s9B7GW65FeYKAOs04NZ1k&redirect_uri=https%3A%2F%2Fwc-qa3-web5.wamcentral.net%2Fimplicit%2Fcallback&response_type=code&state=B3bBEkz2ru4d1q2dUyNUoHjuNR8LgtnJOW5MAPqFER96TRWCZAHqRJu24QDcqube&scope=openid%20email%20profile

Request URL: https://dev-490079.okta.com/oauth2/aus39le04eDAfhtFN4x7/v1/token

Request URL: https://dev-490079.okta.com/oauth2/aus39le04eDAfhtFN4x7/v1/keys

Request URL: https://dev-490079.okta.com/oauth2/aus39le04eDAfhtFN4x7/v1/userinfo

Can you please share the details. Below is the sample code for your reference.

                    const oktaAuth = new OktaAuth({
                        issuer: data.Issuer,
                        redirectUri: `${window.location.origin}/implicit/callback`,

                        clientId: data.Client_id,                     
                        tokenManager: {
                            storage: 'sessionStorage'
                        },
                        storageManager: {
                            token: {
                                storageType: 'sessionStorage',
                                storageTypes: []
                            },
                            cache: {
                                storageType: 'sessionStorage',
                                storageTypes: []
                            },
                            transaction: {
                                storageType: 'sessionStorage',
                                storageTypes: []
                            }
                        }
                    });

                    const restoreOriginalUri = async (_oktaAuth, originalUri) => {
                        debugger;

                        window.location.replace('/');
                    };

                         oktaAuth.tokenManager.on('error', function (err) {
                        if (err.errorCode === 'login_required') {
                            window.location.href = "Unauthorized";
                        }
                    });