Skip to content

Commit

Permalink
fix: fixing endpoint naming to plural (#337) (#339)
Browse files Browse the repository at this point in the history
Co-authored-by: Paulo Gomes da Cruz Junior <[email protected]>
  • Loading branch information
mamartinezmejia and Paulo Gomes da Cruz Junior authored Feb 15, 2023
1 parent 26e4e4c commit 5630385
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { useFetch, useFetchTo } from "../../../services/forestClient.service";
const conversionFn = (code: any) => {return {value: code.code, text: code.name}};
const { data: activeClientTypeCodes } = useFetch('/api/clients/activeClientTypeCodes', { method:'get', initialData:[] });
const { data: countryCodes } = useFetch('/api/clients/activeCountryCode?page=0&size=250', { method:'get', initialData:[] }); //TODO: Change to autocomplete
const { data: countryCodes } = useFetch('/api/clients/activeCountryCodes?page=0&size=250', { method:'get', initialData:[] }); //TODO: Change to autocomplete
const computedBusinessTypeSectionSchema = computed(() => {
const schemaCopy = businessTypeSectionSchema
Expand Down

0 comments on commit 5630385

Please sign in to comment.