diff --git a/src/client/app/desktop/views/home/featured.vue b/src/client/app/desktop/views/home/featured.vue index efebfe4821..5a378dde6f 100644 --- a/src/client/app/desktop/views/home/featured.vue +++ b/src/client/app/desktop/views/home/featured.vue @@ -28,7 +28,7 @@ export default Vue.extend({ this.fetching = true; this.$root.api('notes/featured', { - limit: 10 + limit: 15 }).then(notes => { this.notes = notes; this.fetching = false; diff --git a/src/client/app/mobile/views/pages/featured.vue b/src/client/app/mobile/views/pages/featured.vue index f4094e75c8..378a7b8c47 100644 --- a/src/client/app/mobile/views/pages/featured.vue +++ b/src/client/app/mobile/views/pages/featured.vue @@ -36,7 +36,7 @@ export default Vue.extend({ this.fetching = true; this.$root.api('notes/featured', { - limit: 10 + limit: 15 }).then(notes => { this.notes = notes; this.fetching = false;