Skip to content

Commit

Permalink
- fixed incorrect correctedFilingType (#361)
Browse files Browse the repository at this point in the history
- app version = 5.2.13
  • Loading branch information
severinbeauvais authored Jul 14, 2022
1 parent 71f4fa0 commit a87af07
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-filings-ui",
"version": "5.2.12",
"version": "5.2.13",
"private": true,
"appName": "Filings UI",
"sbcName": "SBC Common Components",
Expand Down
6 changes: 3 additions & 3 deletions src/mixins/filing-mixin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ export default class FilingMixin extends Mixins(DateMixin) {
}

/**
* Builds a Firm Correction filing body from a Change of Registration filing
* or Registration filing. Used when creating a Firm Correction.
* Builds a Firm Correction filing body from a Registration or Change of Registration filing.
* Used when creating a Firm Correction.
* @param correctedFiling the Change of Registration or Registration filing to correct
* @returns the Firm Correction filing body
*/
Expand All @@ -140,7 +140,7 @@ export default class FilingMixin extends Mixins(DateMixin) {
},
correction: {
correctedFilingId: correctedFiling.header.filingId,
correctedFilingType: FilingTypes.REGISTRATION,
correctedFilingType: correctedFiling.header.name,
correctedFilingDate: correctedFiling.header.date,
comment: ''
},
Expand Down

0 comments on commit a87af07

Please sign in to comment.