Skip to content

Commit

Permalink
fix for missing information on incorp requests
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonSharratt committed Dec 3, 2024
1 parent 4a891a3 commit 529de67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/businessBootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const useBcrosBusinessBootstrap = defineStore('bcros/businessBootstrap',
const isStoreLoading = ref(false)
const pendingFilings: Ref<PendingItemI[]> = ref([])
const bootstrapIdentifier = computed(() => bootstrapFiling.value?.filing.business.identifier)
const bootstrapLegalType = computed(() => bootstrapFiling.value?.filing.business.legalType)
const bootstrapLegalType = computed(() => bootstrapFiling.value?.filing.business.legalType || bootstrapFiling.value?.filing?.incorporationApplication?.nameRequest?.legalType)

Check warning on line 15 in src/stores/businessBootstrap.ts

View workflow job for this annotation

GitHub Actions / linting (20)

This line has a length of 176. Maximum allowed is 120
const bootstrapFilingType = computed(() => bootstrapFiling.value?.filing.header.name)
const bootstrapFilingStatus = computed(() => bootstrapFiling.value?.filing.header.status)
const bootstrapNr = computed(() => bootstrapFiling.value?.filing[bootstrapFilingType.value]?.nameRequest)
Expand Down

0 comments on commit 529de67

Please sign in to comment.