Skip to content

Commit bb32d9f

Browse files
committed
Update search component labels for consistency
1 parent 980204f commit bb32d9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/src/components/search/Search.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ function Search({ loading, setLoading }) {
2222
return (
2323
<div className="tab-content">
2424
<div className="search-section">
25-
<h2>🔍 Search</h2>
25+
<h2>🔍 Find </h2>
2626
<div className="search-form">
2727
<input
2828
type="text"
29-
placeholder="Search users, products, tasks..."
29+
placeholder="Find users, products, tasks..."
3030
value={searchQuery}
3131
onChange={(e) => setSearchQuery(e.target.value)}
3232
onKeyPress={(e) => e.key === 'Enter' && handleSearch()}
3333
/>
3434
<button onClick={handleSearch} disabled={loading}>
35-
{loading ? 'Searching...' : 'Search'}
35+
{loading ? 'Finding...' : 'Find'}
3636
</button>
3737
</div>
3838

0 commit comments

Comments
 (0)