From 6b8f828277e82f0a476f6e78e3aa386b56757b0c Mon Sep 17 00:00:00 2001 From: speakeloudest Date: Mon, 25 Aug 2025 21:22:34 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/user/app/auth/send-code.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/user/app/auth/send-code.tsx b/apps/user/app/auth/send-code.tsx index 3333600..58fb583 100644 --- a/apps/user/app/auth/send-code.tsx +++ b/apps/user/app/auth/send-code.tsx @@ -2,7 +2,7 @@ import useGlobalStore from '@/config/use-global'; import { sendEmailCode, sendSmsCode } from '@/services/common/common'; -import { Button } from '@workspace/airo-ui/components/button'; +import { AiroButton } from '@workspace/airo-ui/components/AiroButton'; import { useCountDown } from 'ahooks'; import { useTranslations } from 'next-intl'; import { useEffect, useState } from 'react'; @@ -81,15 +81,14 @@ export default function SendCode({ type, params }: SendCodeProps) { (type === 'email' ? !params.email : !params.telephone || !params.telephone_area_code); return ( - + ); }