(p: string, mention: boolean)
| 114 | }; |
| 115 | |
| 116 | const handleInsert = (p: string, mention: boolean) => { |
| 117 | onInsert(mention ? `@${p} ` : `${p} `); |
| 118 | logEvent('tengu_quick_open_insert', { |
| 119 | result_count: results.length, |
| 120 | mention, |
| 121 | }); |
| 122 | onDone(); |
| 123 | }; |
| 124 | |
| 125 | return ( |
| 126 | <FuzzyPicker |
no test coverage detected