From 4d74aafb2e63539a739ddbd9e5b77a738936b301 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Sun, 2 Nov 2025 17:20:17 +0100 Subject: [PATCH] debug: add ray logging to trace S3DownloadFinished event flow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add debugging to understand why the download message stays visible after completion. This will help us see if: 1. The event is being dispatched by ActivityMonitor 2. The event is being received by Import component 3. The property is being set to false 4. The entangle is syncing to Alpine properly 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/Livewire/Project/Database/Import.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Livewire/Project/Database/Import.php b/app/Livewire/Project/Database/Import.php index 3e9ff160d..c2490bee6 100644 --- a/app/Livewire/Project/Database/Import.php +++ b/app/Livewire/Project/Database/Import.php @@ -80,7 +80,9 @@ public function getListeners() public function handleS3DownloadFinished(): void { + ray('S3DownloadFinished event received!'); $this->s3DownloadInProgress = false; + ray('s3DownloadInProgress set to false', $this->s3DownloadInProgress); } public function mount()