refactor: remove prompt picker display on quick ask text retrieval

- Eliminated the automatic display of the prompt picker when quick ask text is retrieved from the Electron API, streamlining the user experience.
This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-04-07 03:17:10 -07:00
parent 91ea293fa2
commit e574b5ec4a

View file

@ -364,7 +364,6 @@ const Composer: FC = () => {
electronAPI.getQuickAskText().then((text) => {
if (text) {
setClipboardInitialText(text);
setShowPromptPicker(true);
}
});
}, [electronAPI]);