diff --git a/src/login/DefaultPage.tsx b/src/login/DefaultPage.tsx index 6d3d7c00..75bc7eed 100644 --- a/src/login/DefaultPage.tsx +++ b/src/login/DefaultPage.tsx @@ -4,7 +4,7 @@ import type { LazyOrNot } from "keycloakify/tools/LazyOrNot"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { I18n } from "keycloakify/login/i18n"; import type { KcContext } from "keycloakify/login/KcContext"; -import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFields"; +import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFieldsProps"; const Login = lazy(() => import("keycloakify/login/pages/Login")); const Register = lazy(() => import("keycloakify/login/pages/Register")); @@ -42,7 +42,7 @@ const LoginX509Info = lazy(() => import("keycloakify/login/pages/LoginX509Info") const WebauthnError = lazy(() => import("keycloakify/login/pages/WebauthnError")); type DefaultPageProps = PageProps & { - UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; + UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; doMakeUserConfirmPassword: boolean; }; diff --git a/src/login/pages/IdpReviewUserProfile.tsx b/src/login/pages/IdpReviewUserProfile.tsx index 791ae7ca..89320715 100644 --- a/src/login/pages/IdpReviewUserProfile.tsx +++ b/src/login/pages/IdpReviewUserProfile.tsx @@ -2,12 +2,12 @@ import { useState } from "react"; import type { LazyOrNot } from "keycloakify/tools/LazyOrNot"; import { getKcClsx } from "keycloakify/login/lib/kcClsx"; import type { PageProps } from "keycloakify/login/pages/PageProps"; -import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFields"; +import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFieldsProps"; import type { KcContext } from "../KcContext"; import type { I18n } from "../i18n"; type IdpReviewUserProfileProps = PageProps, I18n> & { - UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; + UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; doMakeUserConfirmPassword: boolean; }; diff --git a/src/login/pages/LoginUpdateProfile.tsx b/src/login/pages/LoginUpdateProfile.tsx index c9be29a6..075a3e65 100644 --- a/src/login/pages/LoginUpdateProfile.tsx +++ b/src/login/pages/LoginUpdateProfile.tsx @@ -1,13 +1,13 @@ import { useState } from "react"; import type { LazyOrNot } from "keycloakify/tools/LazyOrNot"; import { getKcClsx } from "keycloakify/login/lib/kcClsx"; -import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFields"; +import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFieldsProps"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { KcContext } from "../KcContext"; import type { I18n } from "../i18n"; type LoginUpdateProfileProps = PageProps, I18n> & { - UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; + UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; doMakeUserConfirmPassword: boolean; }; diff --git a/src/login/pages/Register.tsx b/src/login/pages/Register.tsx index 6e3eece2..4cfd8b18 100644 --- a/src/login/pages/Register.tsx +++ b/src/login/pages/Register.tsx @@ -3,13 +3,13 @@ import { Markdown } from "keycloakify/tools/Markdown"; import type { LazyOrNot } from "keycloakify/tools/LazyOrNot"; import { useTermsMarkdown } from "keycloakify/login/lib/useDownloadTerms"; import { getKcClsx, type KcClsx } from "keycloakify/login/lib/kcClsx"; -import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFields"; +import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFieldsProps"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { KcContext } from "../KcContext"; import type { I18n } from "../i18n"; type RegisterProps = PageProps, I18n> & { - UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; + UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; doMakeUserConfirmPassword: boolean; }; diff --git a/src/login/pages/UpdateEmail.tsx b/src/login/pages/UpdateEmail.tsx index 0df7edae..43b3285a 100644 --- a/src/login/pages/UpdateEmail.tsx +++ b/src/login/pages/UpdateEmail.tsx @@ -1,13 +1,13 @@ import { useState } from "react"; import type { LazyOrNot } from "keycloakify/tools/LazyOrNot"; import { getKcClsx, type KcClsx } from "keycloakify/login/lib/kcClsx"; -import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFields"; +import type { UserProfileFormFieldsProps } from "keycloakify/login/UserProfileFormFieldsProps"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { KcContext } from "../KcContext"; import type { I18n } from "../i18n"; type UpdateEmailProps = PageProps, I18n> & { - UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; + UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>; doMakeUserConfirmPassword: boolean; };