From b77b40672ce86c22d6684e85b640c48fca76a527 Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Thu, 8 Jan 2026 10:18:12 -0500 Subject: [PATCH] linting fixes --- src/constants/endpoints.js | 3 +-- src/store/index.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/constants/endpoints.js b/src/constants/endpoints.js index 055b56b4..cfcd501c 100644 --- a/src/constants/endpoints.js +++ b/src/constants/endpoints.js @@ -217,7 +217,6 @@ const endpoints = Object.freeze({ method: 'POST' }, DuplicateSearch: { - // eslint-disable-next-line max-len url: `${ORDER_BASE_URL}/duplicate-check`, method: 'GET' }, @@ -231,4 +230,4 @@ const endpoints = Object.freeze({ } }); -export { endpoints }; +export default endpoints; diff --git a/src/store/index.js b/src/store/index.js index 14106bf2..faac0194 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -7,7 +7,7 @@ import bailoutMessage from '@/constants/bailoutMessage'; import coverageStatuses from '@/constants/coverage-statuses'; import coverageType from '@/constants/coverage-type'; import damageLocationsSelected from '@/constants/damage-locations-selected'; -import { endpoints } from '@/constants/endpoints'; +import endpoints from '@/constants/endpoints'; import { experimentSettings, experimentTriggers, experimentUniverses } from '@/constants/experiments'; import partNumberStrings from '@/constants/part-number-strings'; import partTypeStrings from '@/constants/part-type-strings';