feat: shorten search placeholder text

This commit is contained in:
codytseng
2025-09-11 10:27:33 +08:00
parent 8655fd1840
commit 8ba9d872e2
17 changed files with 17 additions and 31 deletions

View File

@@ -216,7 +216,7 @@ const SearchBar = forwardRef<
'bg-surface-background shadow-inner h-full border-none',
searching ? 'z-50' : ''
)}
placeholder={t('Type searching for people, keywords, or relays')}
placeholder={t('People, keywords, or relays')}
value={input}
onChange={(e) => setInput(e.target.value)}
onKeyDown={handleKeyDown}