Skip to content

Commit

Permalink
fix: invalid params passed to DefaultConfigs
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Jun 30, 2024
1 parent 7dce346 commit c7adc94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dashmate/src/createDIContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ export default async function createDIContainer(options = {}) {
getLocalConfig: asFunction(getLocalConfigFactory).singleton(),
getTestnetConfig: asFunction(getTestnetConfigFactory).singleton(),
getMainnetConfig: asFunction(getMainnetConfigFactory).singleton(),
defaultConfigs: asFunction((
defaultConfigs: asFunction(({
getBaseConfig,
getLocalConfig,
getTestnetConfig,
getMainnetConfig,
) => new DefaultConfigs([
}) => new DefaultConfigs([
getBaseConfig,
getLocalConfig,
getTestnetConfig,
Expand Down

0 comments on commit c7adc94

Please sign in to comment.