Skip to content

Commit

Permalink
fix: remove giant (and a bit misleading) text on the search page
Browse files Browse the repository at this point in the history
  • Loading branch information
Zir0h committed Nov 28, 2024
1 parent 7bffd88 commit 974dca9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function Home({ isSearch = false }) {
{isSearch && (
<Input
type="text"
name="search"
name="Enter a search term and press enter:"
onChange={(value) => {
setSearchTerm(value as string)
}}
Expand Down Expand Up @@ -84,7 +84,7 @@ export function Home({ isSearch = false }) {
searchParams.get('term') ? (
<FEEDS.SearchFeed />
) : (
<h1>Enter a search term</h1>
<></>
)
) : (
outlet || <FeedComponent />
Expand Down

0 comments on commit 974dca9

Please sign in to comment.