feat: 一些优化

This commit is contained in:
cc
2026-01-29 20:48:27 +08:00
parent b9fa0cc215
commit 3c51dee9a6
2 changed files with 40 additions and 33 deletions

View File

@@ -224,7 +224,7 @@ function ContactsPage() {
</div>
<div className="type-filters">
<label className="filter-checkbox">
<label className={`filter-chip ${contactTypes.friends ? 'active' : ''}`}>
<input
type="checkbox"
checked={contactTypes.friends}
@@ -233,7 +233,7 @@ function ContactsPage() {
<User size={16} />
<span></span>
</label>
<label className="filter-checkbox">
<label className={`filter-chip ${contactTypes.groups ? 'active' : ''}`}>
<input
type="checkbox"
checked={contactTypes.groups}
@@ -242,7 +242,7 @@ function ContactsPage() {
<Users size={16} />
<span></span>
</label>
<label className="filter-checkbox">
<label className={`filter-chip ${contactTypes.officials ? 'active' : ''}`}>
<input
type="checkbox"
checked={contactTypes.officials}