Skip to content

Commit

Permalink
fix(demo): missing anet config (#2872)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Jun 14, 2024
1 parent c246289 commit 31b2555
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/demo/src/environments/environment.magento.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const environment: EnvironmentConfiguration = {
domain: 'https://magento2.test',
anetConfig: {
// TODO: add these
clientKey: '',
apiLoginID: '',
clientKey: 'test',
apiLoginID: 'test',
},
},
};
5 changes: 5 additions & 0 deletions apps/demo/src/environments/environment.venia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,10 @@ export const environment: EnvironmentConfiguration = {
driver: {
variant: DemoDriverVariantEnum.MAGENTO,
domain: 'https://venia.magento.com',
anetConfig: {
// TODO: add these
clientKey: 'test',
apiLoginID: 'test',
},
},
};

0 comments on commit 31b2555

Please sign in to comment.