diff --git a/src/pure.ts b/src/pure.ts index 051cdfd..b844593 100644 --- a/src/pure.ts +++ b/src/pure.ts @@ -139,6 +139,6 @@ function wrapUiIfNeeded(innerElement: React.ReactNode, wrapperComponent?: React. : innerElement } -export function configure(config: Partial): void { - Object.assign(config, config) +export function configure(customConfig: Partial): void { + Object.assign(config, customConfig) }