Skip to content

Commit c1d8cca

Browse files
authored
Merge pull request #5859 from vuestorefront/fix/ESLint-warnings
fix: ESLint warnings
2 parents f9681a7 + a2c7ad1 commit c1d8cca

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4242
- Multi-tab cart-sync in multi-store environment - @cewald (#5711, #5732)
4343
- Incorrect load of default address in checkout - @lukaszjedrasik ([#4682](https://github.com/vuestorefront/vue-storefront/issues/4682))
4444
- Error with unknown theme/index.js alias - @Fifciuu (https://github.com/vuestorefront/vue-storefront/pull/5813)
45-
45+
- ESLint warnings caused by the double import - @lukaszjedrasik
4646
### Changed / Improved
4747

4848
- Moved hardcoded fields from omitSelectedVariantFields.ts to config (#4679)

core/scripts/resolvers/resolveGraphQL.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import { server, graphql } from 'config'
22
import Vue from 'vue'
33
import { Logger } from '@vue-storefront/core/lib/logger'
4-
import { once } from '@vue-storefront/core/helpers'
5-
import { isServer } from '@vue-storefront/core/helpers';
4+
import { once, isServer } from '@vue-storefront/core/helpers'
65

76
export const getApolloProvider = async () => {
87
if (server.api === 'graphql') {

0 commit comments

Comments
 (0)