From 51836b8b3e8cf0a506ef8ae6b67a6c72416cc7fa Mon Sep 17 00:00:00 2001 From: Isaac Roberts <119639439+madebyisaacr@users.noreply.github.com> Date: Tue, 19 May 2026 13:14:39 -0400 Subject: [PATCH] Use silent option in text search --- plugins/global-search/src/App.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/global-search/src/App.tsx b/plugins/global-search/src/App.tsx index 9da32ae94..a7f44632f 100644 --- a/plugins/global-search/src/App.tsx +++ b/plugins/global-search/src/App.tsx @@ -13,9 +13,7 @@ document.addEventListener("keydown", event => { if (!isEscape && !isOwnOpenCombination) return - // This will close the plugin, but also show a message that the plugin was closed. - // We might add a "silent" option later. - framer.closePlugin() + framer.closePlugin(undefined, { silent: true }) }) void framer.showUI(getPluginUiOptions({ query: undefined, hasResults: false }))