From f24f867684d24c07cdb66fbde2ee09014905515d Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Sun, 26 Apr 2026 11:11:31 -0700 Subject: [PATCH] add hyphens to random blueprint name --- server/lib/blueprints/applyBlueprint.ts | 2 +- src/components/InfoSection.tsx | 2 +- src/components/ui/checkbox.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/server/lib/blueprints/applyBlueprint.ts b/server/lib/blueprints/applyBlueprint.ts index fd189e6ca..8ca66971a 100644 --- a/server/lib/blueprints/applyBlueprint.ts +++ b/server/lib/blueprints/applyBlueprint.ts @@ -293,7 +293,7 @@ export async function applyBlueprint({ orgId, name: name ?? - `${faker.word.adjective()} ${faker.word.adjective()} ${faker.word.noun()}`, + `${faker.word.adjective()}-${faker.word.adjective()}-${faker.word.noun()}`, contents: stringifyYaml(configData), createdAt: Math.floor(Date.now() / 1000), succeeded: blueprintSucceeded, diff --git a/src/components/InfoSection.tsx b/src/components/InfoSection.tsx index 7203236e1..f680a51ca 100644 --- a/src/components/InfoSection.tsx +++ b/src/components/InfoSection.tsx @@ -19,7 +19,7 @@ export function InfoSections({ return (
- + ));