Skip to content

Commit

Permalink
feat:隐藏account展示
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoyafng committed Nov 7, 2024
1 parent 490dd2d commit 0c76107
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions packages/guard-core-v4/src/ChangePassword/core/resetPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,13 @@ export const GuardResetPassword = () => {
className="icon"
/>
<div className="title">{t('login.resetPwd')}</div>
<div className="title-explain">
{t('login.resetPassword.resetPasswordText2', {
account
})}
</div>
{account && (
<div className="title-explain">
{t('login.resetPassword.resetPasswordText2', {
account
})}
</div>
)}
</div>
<div className="g2-view-tabs">
<Form
Expand Down

0 comments on commit 0c76107

Please sign in to comment.