diff --git a/src/interfaces/index.ts b/src/interfaces/index.ts index cd5a99544..0c8e82734 100644 --- a/src/interfaces/index.ts +++ b/src/interfaces/index.ts @@ -15,7 +15,7 @@ export * from './dialog-options' export * from './refund-params-interface' // external interfaces -export { +export type { BreadcrumbIF, BusinessLookupResultIF, FormIF, diff --git a/src/store/actions.ts b/src/store/actions.ts index 6ed3486dc..83c4c576c 100644 --- a/src/store/actions.ts +++ b/src/store/actions.ts @@ -297,6 +297,8 @@ export const setAddressSuggestions: ActionIF = ({ commit }, addressSuggestions: // FUTURE: not an action - move it to another module? export const fetchCorpNum = async ({ getters }, corpNum: string): Promise => { + // NB: MRAS search should have been done on first page for xpro + // NB: COLIN search should have been done on first page for BC if (getters.getShowCorpNum) { if (getters.getShowCorpNum === CorpNumRequests.MRAS) { return checkMRAS({ getters }, corpNum)