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 }))