From ca8527ac85a3cec90530a6abbdadb5f8f295ca68 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 12 Jul 2026 11:21:51 +0200 Subject: [PATCH] Emit 'repo-updated' event after saving application store --- src-tauri/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 7720516..2d2859a 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -1192,6 +1192,7 @@ fn run_llm_commit_rewrite(app: AppHandle, folder_path: String, force: bool) -> C } } save_store(&state)?; + emit(&app, "repo-updated", folder_path.clone()); if let Some(err) = error { return Err(err);