Skip to content

Commit 5b636f2

Browse files
authored
Merge pull request #2 from edx/djoy/travis_test
Travis, you there?
2 parents efec10b + b5958e0 commit 5b636f2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
frontend-app-account
44
=========================
55

6-
Please tag **@edx/arch-team** on any PRs or issues. Thanks.
6+
Please tag **@edx/arch-team** on any PRs or issues.
77

88
Introduction
99
------------

src/example/service.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let config = {
66
LMS_BASE_URL: null,
77
};
88

9-
let apiClient = null;
9+
let apiClient = null; // eslint-disable-line
1010

1111
function validateConfiguration(newConfig) {
1212
Object.keys(config).forEach((key) => {
@@ -23,10 +23,10 @@ export function configureApiService(newConfig, newApiClient) {
2323
}
2424

2525
export async function getData(data) {
26-
//const { data } = await apiClient.get(`${config.API_BASE_URL}/example/`, {
27-
return new Promise((resolve, reject) => {
26+
// const { data } = await apiClient.get(`${config.API_BASE_URL}/example/`, {
27+
return new Promise((resolve) => {
2828
setTimeout(() => {
2929
resolve(data);
3030
}, 2000);
31-
});;
31+
});
3232
}

0 commit comments

Comments
 (0)