Skip to content

Commit 8aa7dd3

Browse files
authored
Replace "Search" with "Find" (#147)
1 parent be40419 commit 8aa7dd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Search/component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const SearchComponent: FC<SearchComponentProps> = ({ value, onChange }) => {
1212
<input
1313
type="text"
1414
value={value}
15-
placeholder="Search bookmarks..."
15+
placeholder="Find bookmarks..."
1616
onChange={(e) => onChange(e.target.value)}
1717
onKeyDown={(e) => {
1818
if (e.key === 'Escape') {

0 commit comments

Comments
 (0)