Skip to content

Commit

Permalink
dont wrap prefill options with immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Deschamps Rudge authored and Luis Deschamps Rudge committed Feb 3, 2017
1 parent 2d7442f commit 856b53d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function setup(id, clientID, domain, options, hookRunner, emitEventFn) {
allowedConnections: Immutable.fromJS(options.allowedConnections || []),
ui: extractUIOptions(id, options),
defaultADUsernameFromEmailPrefix: options.defaultADUsernameFromEmailPrefix === false ? false : true,
prefill: Immutable.fromJS(options.prefill || {})
prefill: options.prefill || {}
}));

m = i18n.initI18n(m);
Expand Down

0 comments on commit 856b53d

Please sign in to comment.