Skip to content

Commit

Permalink
Fix config camel key mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Pröschel committed May 11, 2021
1 parent 205470d commit 5e5a376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/typescript/httpclient/src/endpoints/getConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ const camelcaseKeys = require('camelcase-keys');

export const getConfigDef = {
endpoint: 'client.config',
mapResponse: response => camelcaseKeys(response, {deep: true}),
mapResponse: response => camelcaseKeys(response, {deep: true, stopPaths: ['components']}),
};

0 comments on commit 5e5a376

Please sign in to comment.