Skip to content

Commit 6eb4a45

Browse files
committed
fix: linting issues improvements
1 parent 9855ff5 commit 6eb4a45

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

app/utils/pagination.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ const VIEWABLE_PAGES = 9;
55
export function pagination() {
66
return macro(function () {
77
let { page, per_page: perPage, totalItems } = this;
8-
console.log({
9-
page,
10-
perPage,
11-
totalItems,
12-
});
138
return _pagination(page, perPage, totalItems);
149
});
1510
}

mirage/route-handlers/me.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Response } from 'miragejs';
22

3-
import { pageParams } from './-utils';
43
import { getSession } from '../utils/session';
4+
import { pageParams } from './-utils';
55

66
export function register(server) {
77
server.get('/api/v1/me', function (schema) {

0 commit comments

Comments
 (0)