Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
derekmbrown committed Feb 4, 2025
1 parent 788ce6b commit 1b01bac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/SearchBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import { getCollection } from 'astro:content'
const allNotes = await getCollection('notes')
---

<Search client:load searchList={allNotes} />
<Search client:load searchList={allNotes} />
2 changes: 1 addition & 1 deletion src/components/ui/Search.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function Search({ searchList }) {
)}
{notes &&
notes.map((note) => (
<NoteItem client:load note={note} />
<NoteItem client:only note={note} />
))}
</>
)
Expand Down

0 comments on commit 1b01bac

Please sign in to comment.