Skip to content

Commit

Permalink
invert contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
iwishyoujoy committed Feb 24, 2024
1 parent 6f8d0c3 commit 7af0c14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/account/[login]/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,11 @@ export default function Page({ params: { login } }: IPageProps) {
</div>
<div className={styles.checkboxContainer}>
<input className={styles.checkbox} type='checkbox' checked={showEmail} onChange={() => setShowEmail(!showEmail)}/>
<label className={styles.labelCheckbox} onClick={() => setShowEmail(!showEmail)}>Показывать почту в профиле</label>
<label className={styles.labelCheckbox} onClick={() => setShowEmail(!showEmail)}>Не показывать почту в профиле</label>
</div>
<div className={styles.checkboxContainer}>
<input className={styles.checkbox} type='checkbox' checked={showPhone} onChange={() => setShowPhone(!showPhone)}/>
<label className={styles.labelCheckbox} onClick={() => setShowPhone(!showPhone)}>Показывать телефон в профиле</label>
<label className={styles.labelCheckbox} onClick={() => setShowPhone(!showPhone)}>Не показывать телефон в профиле</label>
</div>
<button
type='button'
Expand Down

0 comments on commit 7af0c14

Please sign in to comment.