diff --git a/app/ipc.ts b/app/ipc.ts index ed50bf6..f38a094 100644 --- a/app/ipc.ts +++ b/app/ipc.ts @@ -51,6 +51,8 @@ export async function watchMaps(sendToUI: SendToUI) { return; } + fileHashes[pathToHash] = newHash; + console.log( `[Map Update]`, `${pathToHash} has changed. Sending update to client...` diff --git a/src/app/home/home.component.ts b/src/app/home/home.component.ts index daee097..5950ec6 100644 --- a/src/app/home/home.component.ts +++ b/src/app/home/home.component.ts @@ -97,8 +97,6 @@ export class HomeComponent { constructor() { const lastTab = (this.localStorage.retrieve('lasttab') as number) ?? 0; this.activeTab.set(lastTab); - - this.analysisService.toggleAnalyzing(); } changeTab(newTab: number) {