From adedb0e39168fa2e843da1e55849974a3be43daa Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Thu, 30 Oct 2025 00:54:15 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20Show=20`Success:=20Blueprint=20a?= =?UTF-8?q?pplied=20successfully`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/lib/blueprints/applyBlueprint.ts | 2 +- src/components/CreateBlueprintForm.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/lib/blueprints/applyBlueprint.ts b/server/lib/blueprints/applyBlueprint.ts index 029341db..235a1591 100644 --- a/server/lib/blueprints/applyBlueprint.ts +++ b/server/lib/blueprints/applyBlueprint.ts @@ -138,7 +138,7 @@ export async function applyBlueprint({ } blueprintSucceeded = true; - blueprintMessage = "success"; + blueprintMessage = "Blueprint applied successfully"; } catch (err) { blueprintSucceeded = false; blueprintMessage = `Failed to update blueprint from config: ${err}`; diff --git a/src/components/CreateBlueprintForm.tsx b/src/components/CreateBlueprintForm.tsx index b60762d0..62328114 100644 --- a/src/components/CreateBlueprintForm.tsx +++ b/src/components/CreateBlueprintForm.tsx @@ -109,7 +109,7 @@ export default function CreateBlueprintForm({ if (res && res.status === 201) { toast({ variant: "default", - title: "Done", + title: "Success", description: res.data.data.message }); router.push(`/${orgId}/settings/blueprints`);