diff --git a/app/store/examine/conflict-data.ts b/app/store/examine/conflict-data.ts index 806cb67b..ee2c46ba 100644 --- a/app/store/examine/conflict-data.ts +++ b/app/store/examine/conflict-data.ts @@ -9,9 +9,9 @@ import { getBusiness, getCorporation, getNameRequest } from '~/util/namex-api' export const useConflictData = defineStore('conflict-data', () => { async function getCorpConflict(corpNum: string): Promise { - // search for businsess in BCRS - const businessResponse = await getBusiness(corpNum) - if (businessResponse.ok) return businessResponse.json() + // Currently, the corp number is in the Colin format, so there's no need to search in BCROS. + //const businessResponse = await getBusiness(corpNum) + //if (businessResponse.ok) return businessResponse.json() // search for business in COLIN const response = await getCorporation(corpNum)