Skip to content

Commit

Permalink
adjust fallback lang
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhj committed Jan 23, 2024
1 parent b13e037 commit 23829c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/utils/getSearchResults.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const getSearchResults = async ({ query, page, language, paginationLimit }) => {
const end = start + currentPagination;

// Use English fallback on German
const fallback = language === 'de' ? 'en' : language;
const fallback = 'en';

const searchCriteria = groq`
(
Expand Down

0 comments on commit 23829c4

Please sign in to comment.