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

Commit

Permalink
Setter urlLookupTable parameter til false som default
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-nom committed Jan 3, 2024
1 parent 4ca4f45 commit f3cf709
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 f3cf709

Please sign in to comment.