Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
Migrate country-service over to atlas (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
plentz authored Aug 8, 2022
1 parent 9366831 commit daf34f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/theme-addresses/__tests__/theme-addresses.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import meta from '../__fixtures__/meta.json';
describe('AddressForm', () => {
beforeAll(() => {
fetchMock.mock(
'https://country-service.shopifycloud.com/graphql',
'https://atlas.shopifysvc.com/graphql',
countries
);

Expand Down
2 changes: 1 addition & 1 deletion packages/theme-addresses/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var query = "query countries($locale: SupportedLocale!) {"
+ " }"
+ "}";

var GRAPHQL_ENDPOINT = 'https://country-service.shopifycloud.com/graphql';
var GRAPHQL_ENDPOINT = 'https://atlas.shopifysvc.com/graphql';

export function loadCountries(locale) {
var response = fetch(GRAPHQL_ENDPOINT, {
Expand Down

0 comments on commit daf34f6

Please sign in to comment.