From d962b7fa03514d6d2ea5bb643f8f84fbd3ace195 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Thu, 13 Nov 2025 05:54:59 +0000 Subject: [PATCH] completionId: cgen-bac09d8b12c047d5a00dffdbe10b6914 cgen-bac09d8b12c047d5a00dffdbe10b6914 --- client/lib/aethex-toast.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/client/lib/aethex-toast.ts b/client/lib/aethex-toast.ts index c519048b..9bbb0a48 100644 --- a/client/lib/aethex-toast.ts +++ b/client/lib/aethex-toast.ts @@ -105,7 +105,19 @@ export const aethexToast = { }); }, - system: (message: string) => { + system: (message: string, accentColor?: string) => { + // If accentColor is provided, use arm variant + if (accentColor) { + return toast({ + title: "🔧 AeThex OS", + description: message, + duration: 4000, + variant: "arm" as any, + accentColor: accentColor, + }); + } + + // Otherwise use default aethex variant return toast({ title: "🔧 AeThex OS", description: message,