-
@@ -121,10 +121,6 @@ import AddonEditions from './addons/Editions.vue';
this.downloads = response.data.package.downloads.total;
});
},
-
- showComposerInstructions() {
- this.modalOpen = true;
- },
}
}
diff --git a/resources/views/addons/index.blade.php b/resources/views/addons/index.blade.php
index 331587496d..529a0d0957 100644
--- a/resources/views/addons/index.blade.php
+++ b/resources/views/addons/index.blade.php
@@ -2,6 +2,7 @@
@extends('statamic::layout')
@section('title', __('Addons'))
+@section('wrapper_class', 'max-w-3xl')
@section('content')
diff --git a/src/Marketplace/AddonsQuery.php b/src/Marketplace/AddonsQuery.php
index 6662039c6a..e88eadc8c9 100644
--- a/src/Marketplace/AddonsQuery.php
+++ b/src/Marketplace/AddonsQuery.php
@@ -41,7 +41,9 @@ public function get()
$params = [
'page' => $this->page,
'search' => $this->search,
- 'filter' => ['statamic' => '3,4'],
+ 'filter' => ['statamic' => '3,4,5'],
+ 'sort' => 'most-popular',
+ 'perPage' => 12,
];
if ($this->installed) {