diff --git a/packages/login/src/components/ChangeOwnerForm/index.tsx b/packages/login/src/components/ChangeOwnerForm/index.tsx index de60b4da71..3061360bb2 100644 --- a/packages/login/src/components/ChangeOwnerForm/index.tsx +++ b/packages/login/src/components/ChangeOwnerForm/index.tsx @@ -37,7 +37,7 @@ import { ownerChange } from "@docspace/shared/api/settings"; import { TError } from "@/types"; import { ConfirmRouteContext } from "../ConfirmRoute"; -import { ButtonsWrapper } from "../StyledConfirm.styled"; +import { ButtonsWrapper } from "../Confirm.styled"; type ChangeOwnerFormProps = { newOwner?: string; diff --git a/packages/login/src/components/ContinuePortalForm/index.tsx b/packages/login/src/components/ContinuePortalForm/index.tsx index d29cfa4df4..9523eac57c 100644 --- a/packages/login/src/components/ContinuePortalForm/index.tsx +++ b/packages/login/src/components/ContinuePortalForm/index.tsx @@ -38,7 +38,7 @@ import { continuePortal } from "@docspace/shared/api/portal"; import { TError } from "@/types"; import { ConfirmRouteContext } from "../ConfirmRoute"; -import { ButtonsWrapper } from "../StyledConfirm.styled"; +import { ButtonsWrapper } from "../Confirm.styled"; const ContinuePortalForm = () => { const { t } = useTranslation(["Confirm", "Common"]); diff --git a/packages/login/src/components/DeactivatePortalForm/index.tsx b/packages/login/src/components/DeactivatePortalForm/index.tsx index 70118908eb..9caa917629 100644 --- a/packages/login/src/components/DeactivatePortalForm/index.tsx +++ b/packages/login/src/components/DeactivatePortalForm/index.tsx @@ -38,7 +38,7 @@ import { suspendPortal } from "@docspace/shared/api/portal"; import { TError } from "@/types"; import { URL_ONLYOFFICE } from "@/utils/constants"; -import { ButtonsWrapper } from "../StyledConfirm.styled"; +import { ButtonsWrapper } from "../Confirm.styled"; import { ConfirmRouteContext } from "../ConfirmRoute"; type DeactivatePortalProps = { diff --git a/packages/login/src/components/RemovePortalForm/index.tsx b/packages/login/src/components/RemovePortalForm/index.tsx index 63009f78da..a090424424 100644 --- a/packages/login/src/components/RemovePortalForm/index.tsx +++ b/packages/login/src/components/RemovePortalForm/index.tsx @@ -39,7 +39,7 @@ import { TError } from "@/types"; import { URL_ONLYOFFICE } from "@/utils/constants"; import { ConfirmRouteContext } from "../ConfirmRoute"; -import { ButtonsWrapper } from "../StyledConfirm.styled"; +import { ButtonsWrapper } from "../Confirm.styled"; type RemovePortalFormProps = { siteUrl?: string;