feat: update new tab placeholder copy (#441)

* feat: update new tab placeholder copy

* fix: simplify new tab placeholder logic
This commit is contained in:
Felarof
2026-03-08 11:06:41 -07:00
committed by GitHub
parent 60a4167a0e
commit eb208b0515

View File

@@ -126,6 +126,7 @@ export const NewTab = () => {
query: inputValue,
selectedTabs,
})
const searchPlaceholder = `Ask BrowserOS or search ${providerConfig.name}...`
const {
isOpen,
@@ -424,7 +425,7 @@ export const NewTab = () => {
/>
<input
type="text"
placeholder={`Ask AI or search ${providerConfig.name}...`}
placeholder={searchPlaceholder}
className="flex-1 border-none bg-transparent text-base text-foreground outline-none placeholder:text-muted-foreground"
{...getInputProps({
ref: inputRef,