-
-
Notifications
You must be signed in to change notification settings - Fork 113
Fix linting error (#775) #776
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix linting error (#775) #776
Conversation
app/adapters/application.js
Outdated
@@ -41,8 +40,8 @@ export default class Application extends JSONAPIAdapter { | |||
return !hasId; | |||
} | |||
|
|||
init() { | |||
super.init(...arguments); | |||
constructor(ids, args) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
constructor(ids, args) { | |
constructor() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorporated review comments with commit 662f8d6
app/adapters/application.js
Outdated
init() { | ||
super.init(...arguments); | ||
constructor(ids, args) { | ||
super(ids, args); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
super(ids, args); | |
super(...arguments); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorporated review comments with commit 662f8d6
Thank you so much for your patience waiting for reviews. I will try to do better from here on out. |
Closes item-1 at #775