Skip to content

Commit

Permalink
fix: wrong function call in the database mocking options
Browse files Browse the repository at this point in the history
  • Loading branch information
pbastia committed Nov 6, 2020
1 parent 3c115e2 commit 5c8f227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/server/helpers/databaseMockPgOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const generateDatabaseMockOptions = (cookies, fields) => {
if (process.env.ENABLE_DB_MOCKS !== 'true') return {};

return {
...buildForwardedCookieOptions(cookies, fields),
...generateForwardedCookieOptions(cookies, fields),
search_path: 'mocks,pg_catalog,public'
};
};
Expand Down

0 comments on commit 5c8f227

Please sign in to comment.