From b75c0fd8ae994e4678ebf33b705c1c7faa25c884 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Sun, 26 Oct 2025 09:27:21 +0100 Subject: [PATCH] fix: change app_id and installation_id to integer values in createGithubAppManually method --- app/Livewire/Source/Github/Change.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Livewire/Source/Github/Change.php b/app/Livewire/Source/Github/Change.php index b03d0fa67..4bd0b798a 100644 --- a/app/Livewire/Source/Github/Change.php +++ b/app/Livewire/Source/Github/Change.php @@ -341,8 +341,8 @@ public function createGithubAppManually() $this->authorize('update', $this->github_app); $this->github_app->makeVisible('client_secret')->makeVisible('webhook_secret'); - $this->github_app->app_id = '1234567890'; - $this->github_app->installation_id = '1234567890'; + $this->github_app->app_id = 1234567890; + $this->github_app->installation_id = 1234567890; $this->github_app->save(); // Redirect to avoid Livewire morphing issues when view structure changes