Skip to content

Commit

Permalink
Update BreadcrumbResource.ts
Browse files Browse the repository at this point in the history
- removed superfluous typing
  • Loading branch information
severinbeauvais authored Feb 22, 2024
1 parent 2e91a4c commit 9f740ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/resources/BreadcrumbResource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const store = useStore()

/** Returns legal name. */
function getLegalName (): string {
const getFilingType: FilingTypes = store.getFilingType
const getBusinessLegalName: string = store.getBusinessLegalName
const getNameRequestApprovedName: string = store.getNameRequestApprovedName
const getFilingType = store.getFilingType
const getBusinessLegalName = store.getBusinessLegalName
const getNameRequestApprovedName = store.getNameRequestApprovedName

switch (getFilingType) {
case FilingTypes.AMALGAMATION_APPLICATION: return getNameRequestApprovedName
Expand Down

0 comments on commit 9f740ba

Please sign in to comment.