`if (securityLevel === "full") { return ( ...
# support-questions
f
Copy code
if (securityLevel === "full") {
    return (
      <EmailPasswordAuthNoSSR>
        {getLayout(<Component {...pageProps} />)}
      </EmailPasswordAuthNoSSR>
    );
  } else {
    return (
      <EmailPasswordAuthNoSSR requireAuth={false}>
        {getLayout(<Component {...pageProps} />)}
      </EmailPasswordAuthNoSSR>
    );
  }