Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1516 from navikt/url-lookup-table-default-false
Browse files Browse the repository at this point in the history
Setter urlLookupTable parameter til false som default
  • Loading branch information
anders-nom authored Jan 3, 2024
2 parents 4ca4f45 + f3cf709 commit 9132557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const clientEnv = ({ req }: Props): Environment => {
FEEDBACK: req.query.feedback === 'true',
CHATBOT: req.query.chatbot !== 'false',
CHATBOT_VISIBLE: req.query.chatbotVisible === 'true',
URL_LOOKUP_TABLE: req.query.urlLookupTable !== 'false',
URL_LOOKUP_TABLE: req.query.urlLookupTable === 'true',
...(req.query.utilsBackground && {
UTILS_BACKGROUND: req.query.utilsBackground as string,
}),
Expand Down

0 comments on commit 9132557

Please sign in to comment.