diff --git a/apps/dimentorin/src/app/auth/forgot/otp/page.tsx b/apps/dimentorin/src/app/auth/forgot/otp/page.tsx index a2bd5a8..99d2daf 100644 --- a/apps/dimentorin/src/app/auth/forgot/otp/page.tsx +++ b/apps/dimentorin/src/app/auth/forgot/otp/page.tsx @@ -1,7 +1,7 @@ import { FC, ReactElement } from 'react'; import { RegisterResetBanner } from "@imphnen-frontend-service/ui/organisms"; import { ForgotStep, OtpForm } from "@imphnen-frontend-service/ui/molecules"; -import { Button, Input } from '@imphnen-frontend-service/ui/atoms'; +import { Button } from '@imphnen-frontend-service/ui/atoms'; export const Components: FC = (): ReactElement => { return ( diff --git a/apps/dimentorin/src/app/auth/login/page.tsx b/apps/dimentorin/src/app/auth/login/page.tsx index cfe8072..fe113e4 100644 --- a/apps/dimentorin/src/app/auth/login/page.tsx +++ b/apps/dimentorin/src/app/auth/login/page.tsx @@ -1,7 +1,8 @@ import { FC, ReactElement } from 'react'; import { LoginBanner } from "@imphnen-frontend-service/ui/organisms" -import { Button, Input, PasswordInput } from '@imphnen-frontend-service/ui/atoms'; +import { Button } from '@imphnen-frontend-service/ui/atoms'; import { useSearchParams } from 'react-router-dom'; +import { InputForm } from '@imphnen-frontend-service/ui/molecules'; export const Components: FC = (): ReactElement => { const [searchParams] = useSearchParams(); @@ -15,10 +16,8 @@ export const Components: FC = (): ReactElement => {