From 424b0fb7d8f870be81bc51171e036c488069b6d6 Mon Sep 17 00:00:00 2001 From: Richard Fontein <32132657+rifont@users.noreply.github.com> Date: Thu, 31 Oct 2024 15:46:26 +0100 Subject: [PATCH] fix(api): Fix import order eslint issue for Hubspot command --- .../hubspot-identify-form/hubspot-identify-form.usecase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/app/analytics/usecases/hubspot-identify-form/hubspot-identify-form.usecase.ts b/apps/api/src/app/analytics/usecases/hubspot-identify-form/hubspot-identify-form.usecase.ts index 577bb43d48d..a92dec09f52 100644 --- a/apps/api/src/app/analytics/usecases/hubspot-identify-form/hubspot-identify-form.usecase.ts +++ b/apps/api/src/app/analytics/usecases/hubspot-identify-form/hubspot-identify-form.usecase.ts @@ -1,7 +1,7 @@ import { HttpService } from '@nestjs/axios'; -import { HubspotIdentifyFormCommand } from './hubspot-identify-form.command'; import { Injectable, Logger } from '@nestjs/common'; import { AxiosError } from 'axios'; +import { HubspotIdentifyFormCommand } from './hubspot-identify-form.command'; const LOG_CONTEXT = 'HubspotIdentifyFormUsecase';