From 014616277576c33e6a94b64f8883a15de94ba434 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 7 Jun 2024 22:27:38 +0900 Subject: [PATCH] refactor(cli): update SearchBox props in search command Changed the 'components' prop passed to 'SearchBox' in 'search.tsx' to have 'key' and 'displayName' properties instead of simple component names. This refactoring aims to better align with the expected prop structure. --- packages/cli/src/commands/search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/search.tsx b/packages/cli/src/commands/search.tsx index a120d26..cb79afd 100644 --- a/packages/cli/src/commands/search.tsx +++ b/packages/cli/src/commands/search.tsx @@ -25,7 +25,7 @@ export default class Search extends Command { await render( ({key: v, displayName: v}))} initialQuery={args.query} helper={'Press ESC to quit'} onKeyDown={(_, k, app) => k.escape && app.exit()}