Skip to content

Commit

Permalink
chore: address comments by coderabbit
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSudip committed Jun 11, 2024
1 parent dcc0bc0 commit 4be3da3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { path } from 'ramda';
import Logger from '../../utils/logger';
import { toIso, getHashFromArray, isDefinedAndNotNullAndNotEmpty } from '../../utils/commonUtils';

const get = (context, value) => path(value.split('.'), context);
const get = (context, value) => (value ? path(value.split('.'), context) : undefined);
const logger = new Logger(DISPLAY_NAME);

let dynamicKeys = [];
Expand Down

0 comments on commit 4be3da3

Please sign in to comment.