Skip to content

Commit

Permalink
- don't save Certified By in BEN or FM draft correction (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
severinbeauvais authored Aug 2, 2022
1 parent 0ff6096 commit c02df5d
Show file tree
Hide file tree
Showing 4 changed files with 4 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.17",
"version": "5.2.18",
"private": true,
"appName": "Filings UI",
"sbcName": "SBC Common Components",
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/correction-filing-interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export interface CorrectionFilingIF {
header: {
name: string
certifiedBy: string
certifiedBy?: string
date: string
routingSlipNumber?: string
folioNumber?: string
Expand Down
2 changes: 0 additions & 2 deletions src/mixins/filing-mixin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ export default class FilingMixin extends Mixins(DateMixin) {
const correctionFiling: CorrectionFilingIF = {
header: {
name: FilingTypes.CORRECTION,
certifiedBy: correctedFiling.header.certifiedBy,
date: this.getCurrentDate
},
business: {
Expand Down Expand Up @@ -129,7 +128,6 @@ export default class FilingMixin extends Mixins(DateMixin) {
const correctionFiling: CorrectionFilingIF = {
header: {
name: FilingTypes.CORRECTION,
certifiedBy: correctedFiling.header.certifiedBy,
date: this.getCurrentDate
},
business: {
Expand Down

0 comments on commit c02df5d

Please sign in to comment.