diff --git a/resources/views/livewire/catalog/index.blade.php b/resources/views/livewire/catalog/index.blade.php
index 751c866..d796d4f 100644
--- a/resources/views/livewire/catalog/index.blade.php
+++ b/resources/views/livewire/catalog/index.blade.php
@@ -23,7 +23,7 @@ new class extends Component {
$this->catalogPlugins = Cache::remember('catalog_plugins', 43200, function () use ($catalogUrl) {
try {
- $response = Http::get($catalogUrl);
+ $response = Http::timeout(10)->get($catalogUrl);
$catalogContent = $response->body();
$catalog = Yaml::parse($catalogContent);
diff --git a/resources/views/livewire/catalog/trmnl.blade.php b/resources/views/livewire/catalog/trmnl.blade.php
index 3fcd473..034bf3b 100644
--- a/resources/views/livewire/catalog/trmnl.blade.php
+++ b/resources/views/livewire/catalog/trmnl.blade.php
@@ -22,7 +22,7 @@ new class extends Component {
{
try {
$this->recipes = Cache::remember('trmnl_recipes_newest', 43200, function () {
- $response = Http::get('https://usetrmnl.com/recipes.json', [
+ $response = Http::timeout(10)->get('https://usetrmnl.com/recipes.json', [
'sort-by' => 'newest',
]);
diff --git a/resources/views/livewire/plugins/index.blade.php b/resources/views/livewire/plugins/index.blade.php
index 1f6c660..4f4da8b 100644
--- a/resources/views/livewire/plugins/index.blade.php
+++ b/resources/views/livewire/plugins/index.blade.php
@@ -286,7 +286,7 @@ new class extends Component {
Browse and install Recipes from the community. Add yours here.
-
+
@@ -297,7 +297,7 @@ new class extends Component {
Alpha
-
+