Skip to content

Commit

Permalink
Replace "Search" with "Find" (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
int128 authored Aug 13, 2022
1 parent be40419 commit 8aa7dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Search/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const SearchComponent: FC<SearchComponentProps> = ({ value, onChange }) => {
<input
type="text"
value={value}
placeholder="Search bookmarks..."
placeholder="Find bookmarks..."
onChange={(e) => onChange(e.target.value)}
onKeyDown={(e) => {
if (e.key === 'Escape') {
Expand Down

0 comments on commit 8aa7dd3

Please sign in to comment.