Skip to content

Commit

Permalink
feat(fe:FSADT1-1510): Load Legal Types description from data convertor
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia committed Sep 20, 2024
1 parent 4b3d24d commit 24482e2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ const standingMessage = computed(() => {
});
//We're using DataConverters.ts for this since it's not being saved to the database, so creating a table isn't necessary.
const legalTypeText = retrieveLegalTypeDesc(formData.value.businessInformation.legalType);
const legalTypeText = computed(() =>
retrieveLegalTypeDesc(formData.value.businessInformation.legalType)
);
const autoCompleteUrl = computed(
() =>
Expand Down

0 comments on commit 24482e2

Please sign in to comment.