void sendOphanComponentEventFromQueryParamsServer()

in src/server/controllers/signInControllers.ts [606:626]


			void sendOphanComponentEventFromQueryParamsServer(
				res.locals.queryParams.componentEventParams,
				'SIGN_IN',
				'web',
				res.locals.ophanConfig.consentUUID,
			);
		}

		// redirect the user to set a global session and then back to completing the authorization flow
		return res.redirect(303, loginRedirectUrl);
	} catch (error) {
		logger.error('Okta oktaIdxApiSignInController failed', error);

		trackMetric('OktaIdxSignIn::Failure');
		trackMetric('OktaPasswordSignInFlow::Failure');

		const { status, gatewayError } = oktaSignInControllerErrorHandler(error);

		// if we're using passcodes, and the user is attempting to sign in with a password
		// on error show the password sign in page
		const errorPage: RoutePaths = (() => {