From 974ca6148b8a903a65537b419e81005fc67ea615 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Sat, 11 Apr 2026 10:44:45 +0200 Subject: [PATCH] fix: return false for unhandled app commands --- src/hooks/appCommandDispatcher.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hooks/appCommandDispatcher.ts b/src/hooks/appCommandDispatcher.ts index fc3c50a7..bf4f7260 100644 --- a/src/hooks/appCommandDispatcher.ts +++ b/src/hooks/appCommandDispatcher.ts @@ -287,4 +287,6 @@ export function dispatchAppCommand(id: AppCommandId, handlers: AppCommandHandler handlers.onRepairVault?.() return true } + + return false }