From 2fbff5328b8ebb45d1433447fabc24d98b9edcff Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 12 May 2025 21:15:31 +0300 Subject: [PATCH] chore(options): remove redundant log --- .../src/widgets/type_widgets/options/related_settings.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/client/src/widgets/type_widgets/options/related_settings.ts b/apps/client/src/widgets/type_widgets/options/related_settings.ts index e85e1b18d..d0f959d43 100644 --- a/apps/client/src/widgets/type_widgets/options/related_settings.ts +++ b/apps/client/src/widgets/type_widgets/options/related_settings.ts @@ -69,8 +69,4 @@ export default class RelatedSettings extends OptionsWidget { return (!!this.noteId && this.noteId in RELATED_SETTINGS); } - async refreshWithNote(note: FNote | null | undefined) { - console.log("Got note ", note); - } - }