completionId: cgen-bac09d8b12c047d5a00dffdbe10b6914

cgen-bac09d8b12c047d5a00dffdbe10b6914
This commit is contained in:
Builder.io 2025-11-13 05:54:59 +00:00
parent 033c409eaf
commit d962b7fa03

View file

@ -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,