Skip to content

Commit ffd9040

Browse files
committed
chore(): lint fix
1 parent e52d4d1 commit ffd9040

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/models/eventsFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class EventsFactory extends Factory {
151151

152152
const event = searchResult ? new Event(searchResult) : null;
153153

154-
return event
154+
return event;
155155
}
156156

157157
/**

src/resolvers/event.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = {
2929
*
3030
* @return {RepetitionsPortion}
3131
*/
32-
async repetitionsPortion({ projectId, originalEventId}, { limit, cursor }) {
32+
async repetitionsPortion({ projectId, originalEventId }, { limit, cursor }) {
3333
const factory = new EventsFactory(projectId);
3434

3535
return factory.getEventRepetitions(originalEventId, limit, cursor);

0 commit comments

Comments
 (0)