diff --git a/apps/desktop/src/main/window.main.ts b/apps/desktop/src/main/window.main.ts index deb370201f..029a0527c6 100644 --- a/apps/desktop/src/main/window.main.ts +++ b/apps/desktop/src/main/window.main.ts @@ -51,6 +51,7 @@ export class WindowMain { // Perform a hard reload of the render process by crashing it. This is suboptimal but ensures that all memory gets // cleared, as the process itself will be completely garbage collected. ipcMain.on("reload-process", async () => { + this.logService.info("Reloading render process"); // User might have changed theme, ensure the window is updated. this.win.setBackgroundColor(await this.getBackgroundColor()); @@ -65,6 +66,7 @@ export class WindowMain { // FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling. // eslint-disable-next-line @typescript-eslint/no-floating-promises this.session.clearCache(); + this.logService.info("Render process reloaded"); }); return new Promise((resolve, reject) => { diff --git a/apps/web/src/app/auth/settings/account/profile.component.ts b/apps/web/src/app/auth/settings/account/profile.component.ts index fa111c9fa6..a960adfe5d 100644 --- a/apps/web/src/app/auth/settings/account/profile.component.ts +++ b/apps/web/src/app/auth/settings/account/profile.component.ts @@ -62,10 +62,7 @@ export class ProfileComponent implements OnInit, OnDestroy { } submit = async () => { - const request = new UpdateProfileRequest( - this.formGroup.get("name").value, - this.profile.masterPasswordHint, - ); + const request = new UpdateProfileRequest(this.formGroup.get("name").value); await this.apiService.putProfile(request); this.platformUtilsService.showToast("success", null, this.i18nService.t("accountUpdated")); }; diff --git a/apps/web/src/app/auth/settings/change-password.component.html b/apps/web/src/app/auth/settings/change-password.component.html index 7c3c22b3d7..b5c8677405 100644 --- a/apps/web/src/app/auth/settings/change-password.component.html +++ b/apps/web/src/app/auth/settings/change-password.component.html @@ -111,7 +111,7 @@
- +