fix: minor

This commit is contained in:
boboiazumi
2025-06-19 21:36:08 +07:00
parent 3dec77bd0a
commit aa52b62ae7
2 changed files with 3 additions and 3 deletions
@@ -32,7 +32,7 @@ export const Components: FC = (): ReactElement => {
const m = Math.floor(seconds / 60);
const s = seconds % 60;
return `${m}:${s.toString().padStart(2, '0')}`;
};
};
return (
<div className='flex flex-col justify-center items-center min-h-screen py-[60px] px-[80px]'>
@@ -51,7 +51,7 @@ export const Components: FC = (): ReactElement => {
name={'otp'}
maxLength={6}
control={form.control}
/>
/>
<Button type="button" className="mt-2" disabled={disabled} onClick={
() => {
resendOTP({email: searchParams.get("email") || ""})
+1 -1
View File
@@ -21,7 +21,7 @@ export const usePostLogin = (): UseMutationResult<
mutationFn: async (payload) => await postLogin(payload),
});
};
export const usePostRegister = (): UseMutationResult<
TResponseMessage,
TResponseError,