From 38347bc8d6bc7ac2615345c4f0e7938dbde4a14e Mon Sep 17 00:00:00 2001 From: John Lynn Date: Fri, 11 Oct 2024 09:42:11 -0400 Subject: [PATCH] Fix insert command removal --- src/handlers/CommandHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/CommandHandler.ts b/src/handlers/CommandHandler.ts index db4ff7b4..ef016788 100644 --- a/src/handlers/CommandHandler.ts +++ b/src/handlers/CommandHandler.ts @@ -129,7 +129,7 @@ export class CommandHandler { `${this.plugin.manifest.id}:create-${template}` ); app.commands.removeCommand( - `${this.plugin.manifest.id}:insert-${template}` + `${this.plugin.manifest.id}:${template}` ); } }