Skip to content

Commit

Permalink
- fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyusung4698 committed Jul 9, 2020
1 parent 070e85c commit 0924006
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/core/odk/ow-games-events-listener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export class OWGamesEventsListener {
)),
map(features => !!features?.length),
catchError(error => {
console.error(`Could not set required features: ${JSON.stringify(this.requiredFeatures)}, error: ${error?.message ?? JSON.stringify(error)}`);
console.error(`Could not set required features: ${JSON.stringify(this.requiredFeatures)}, `
+ `error: ${error?.message ?? JSON.stringify(error)}`);
return of(false);
})
);
Expand Down

0 comments on commit 0924006

Please sign in to comment.