Introduce workspace-aware System side panel with remote process/tmux/Docker management, terminal popup for interactive attach, capability warmup, review-hardened IPC, performance optimizations, toast action errors, and SSH channel recovery on reconnect.
7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
import { toast } from '../ui/toast';
|
|
|
|
/** Surface action failures as a global toast instead of inline panel banners. */
|
|
export function showSystemManagerError(message: string, title?: string) {
|
|
toast.error(message, title);
|
|
}
|