From 98b5aeb9c77fdd5ca00083e89f9245e3e2fb54ac Mon Sep 17 00:00:00 2001 From: Mara <30244939+Mara-Li@users.noreply.github.com> Date: Thu, 11 Jun 2026 22:18:37 +0200 Subject: [PATCH] refactor: uncessary any --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 5d291e2..bcda1fc 100644 --- a/src/main.ts +++ b/src/main.ts @@ -119,7 +119,7 @@ export default class SimpleColoredFolder extends Plugin { async migrateSettings() { if ("timeout" in this.settings) { console.warn("[Simple colored folder] Migrating settings: removing timeout"); - delete (this.settings as any)["timeout"]; + delete this.settings["timeout"]; await this.saveSettings(); } }