Skip to content

Commit

Permalink
fix(EMS-3633): data migration - declaration versioning (#2921)
Browse files Browse the repository at this point in the history
* fix(EMS-3633): data migration - declaration versioning

* fix(EMS-3633): data migration - declaration versioning
  • Loading branch information
ttbarnes authored Aug 8, 2024
1 parent 7d3ae83 commit 2e82c4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const createDeclarationVersionRelationship = async (connection: Connection) => {
console.info(`✅ ${loggingMessage}`);

try {
const promises = Promise.all([await submittedApplications(connection), await nonSubmittedApplications(connection)]);
const promises = await Promise.all([submittedApplications(connection), nonSubmittedApplications(connection)]);

return promises;
} catch (err) {
Expand Down

0 comments on commit 2e82c4f

Please sign in to comment.