From 74c0ebc5dd00a761df48f9e041fe33036503cbf7 Mon Sep 17 00:00:00 2001 From: boboiazumi Date: Sat, 29 Mar 2025 20:57:48 +0700 Subject: [PATCH] fix: bugs --- apps/dimentorin/src/app/auth/forgot/otp/page.tsx | 2 +- apps/dimentorin/src/app/auth/login/page.tsx | 9 ++++----- libs/ui/src/molecules/otp-form/otp-form.tsx | 1 + 3 files changed, 6 insertions(+), 6 deletions(-) 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 => {

Hallo Minna-san

Welcome to Dimentorin by IMPHNEN
-
Email
- -
Password
- + + diff --git a/libs/ui/src/molecules/otp-form/otp-form.tsx b/libs/ui/src/molecules/otp-form/otp-form.tsx index 636262f..6c62c7b 100644 --- a/libs/ui/src/molecules/otp-form/otp-form.tsx +++ b/libs/ui/src/molecules/otp-form/otp-form.tsx @@ -53,6 +53,7 @@ export const OtpForm: FC = ({ onKeyDown={(e) => handleKeyDown(i, e)} size="lg" value={cell[i]} + className="sm:min-w-[10px]" /> ))}