We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca27adc commit 33c29ccCopy full SHA for 33c29cc
apps/sim/app/workspace/[workspaceId]/home/home.tsx
@@ -229,14 +229,6 @@ export function Home({ chatId }: HomeProps = {}) {
229
void stopGeneration().catch(() => {})
230
}, [stopGeneration, workspaceId])
231
232
- const handleStopGeneration = useCallback(() => {
233
- captureEvent(posthogRef.current, 'task_generation_aborted', {
234
- workspace_id: workspaceId,
235
- view: 'mothership',
236
- })
237
- stopGeneration()
238
- }, [stopGeneration, workspaceId])
239
-
240
const handleSubmit = useCallback(
241
(text: string, fileAttachments?: FileAttachmentForApi[], contexts?: ChatContext[]) => {
242
const trimmed = text.trim()
0 commit comments