Skip to content

Commit

Permalink
fix: use raw perspective by default for search (#8757)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge authored Feb 24, 2025
1 parent a143928 commit b23459d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export function createSearchQuery(
},
options: {
tag,
perspective: isRaw ? undefined : searchOpts.perspective,
perspective: isRaw || !searchOpts.perspective?.length ? 'raw' : searchOpts.perspective,
},
searchSpec: specs,
terms,
Expand Down

0 comments on commit b23459d

Please sign in to comment.