Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Fix putMigrationPlansAction function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
mturley committed Sep 21, 2018
1 parent e8d937c commit d895f0f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ const _putMigrationPlansActionCreator = (url, planId, migrationPlans, planSchedu
})
});

export const putMigrationPlansAction = (url, migrationPlans, planSchedule) =>
_putMigrationPlansActionCreator(url, migrationPlans, planSchedule);
export const putMigrationPlansAction = (url, planId, migrationPlans, planSchedule) =>
_putMigrationPlansActionCreator(url, planId, migrationPlans, planSchedule);

0 comments on commit d895f0f

Please sign in to comment.