mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-29 14:37:44 +02:00
Replace the sonner toast-based Quick Capture progress with circular indicators that stack above the Chat FAB button: - Each pending quick-create shows the agent avatar in a circle with a spinning border ring - Hover expands the pill to show "Agent is creating…" - On success: green check overlay, identifier shown on hover, click to navigate to the new issue. Auto-fades after 3s. - On failure: red X overlay, error message on hover. Auto-fades after 5s. - Multiple concurrent tasks stack vertically above the FAB Architecture: - New QuickCreateStack component in packages/views/chat/ - Listens to inbox:new WS events to detect completion/failure - Added agentId to QuickCreatePendingTask for avatar rendering - Removed QuickCreateToasts and toast.loading() calls - Mounted alongside ChatFab in both web and desktop layouts
7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
/// <reference types="next" />
|
|
/// <reference types="next/image-types/global" />
|
|
import "./.next/dev/types/routes.d.ts";
|
|
|
|
// NOTE: This file should not be edited
|
|
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|