Update auth.tsx

This commit is contained in:
eviswu 2024-09-27 16:17:11 +08:00 committed by GitHub
parent a4577c9c17
commit b141f7db6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,7 +45,6 @@ export function AuthPage() {
return ( return (
<div className={styles["auth-page"]}> <div className={styles["auth-page"]}>
<TopBanner></TopBanner>
<div className={styles["auth-header"]}> <div className={styles["auth-header"]}>
<IconButton <IconButton
icon={<LeftIcon />} icon={<LeftIcon />}
@ -105,12 +104,6 @@ export function AuthPage() {
type="primary" type="primary"
onClick={goChat} onClick={goChat}
/> />
<IconButton
text={Locale.Auth.SaasTips}
onClick={() => {
goSaas();
}}
/>
</div> </div>
</div> </div>
); );