diff --git a/src/services/overseas-entities/service.ts b/src/services/overseas-entities/service.ts index 4908eb1f..50ef9745 100644 --- a/src/services/overseas-entities/service.ts +++ b/src/services/overseas-entities/service.ts @@ -51,12 +51,9 @@ export default class OverseasEntityService { public async postOverseasEntity ( transactionId: string, - body: OverseasEntity, - isSaveAndResumeFeatureActive: boolean = false + body: OverseasEntity ): Promise | ApiErrorResponse> { - const URL = (isSaveAndResumeFeatureActive) - ? `/transactions/${transactionId}/overseas-entity/start` - : `/transactions/${transactionId}/overseas-entity`; + const URL = `/transactions/${transactionId}/overseas-entity`; const response: HttpResponse = await this.client.httpPost(URL, mapOverseasEntity(body)); if (response.error) {