We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9855ff5 commit 6eb4a45Copy full SHA for 6eb4a45
app/utils/pagination.js
@@ -5,11 +5,6 @@ const VIEWABLE_PAGES = 9;
5
export function pagination() {
6
return macro(function () {
7
let { page, per_page: perPage, totalItems } = this;
8
- console.log({
9
- page,
10
- perPage,
11
- totalItems,
12
- });
13
return _pagination(page, perPage, totalItems);
14
});
15
}
mirage/route-handlers/me.js
@@ -1,7 +1,7 @@
1
import { Response } from 'miragejs';
2
3
-import { pageParams } from './-utils';
4
import { getSession } from '../utils/session';
+import { pageParams } from './-utils';
export function register(server) {
server.get('/api/v1/me', function (schema) {
0 commit comments