linting fixes
This commit is contained in:
parent
bed6a76592
commit
b77b40672c
2 changed files with 2 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in a new issue