diff --git a/auth-web/src/components/auth/manage-business/AffiliatedEntityTable.vue b/auth-web/src/components/auth/manage-business/AffiliatedEntityTable.vue index 002cbffc81..2651771cbf 100644 --- a/auth-web/src/components/auth/manage-business/AffiliatedEntityTable.vue +++ b/auth-web/src/components/auth/manage-business/AffiliatedEntityTable.vue @@ -232,14 +232,14 @@ export default class AffiliatedEntityTable extends Mixins(DateMixin) { } /** Returns the type of the affiliation */ - private type (item: Business): AffiliationTypes { + private type (item: Business): string { switch (true) { case (this.isNameRequest(item.corpType.code)): return AffiliationTypes.NAME_REQUEST case this.isTemporaryBusinessRegistration(item.corpType.code): return AffiliationTypes.INCORPORATION_APPLICATION default: - return AffiliationTypes.CORPORATION + return this.typeDescription(item.corpType.code as CorpTypeCd) } }