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`);