Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Oct 29, 2024
1 parent 1ed686b commit cfa8d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/svelte.dev/src/routes/search/+page.server.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function load({ url, fetch }) {

const query = url.searchParams.get('q') ?? '';

const results = query ? search(query) : [];
const results = query ? search(query, '') : [];

return {
query,
Expand Down

0 comments on commit cfa8d5c

Please sign in to comment.