From 5a610400270f658f2ae51135f1fb51daa74ff4e6 Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Thu, 30 Oct 2025 00:21:39 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20remove=20form=20description=20an?= =?UTF-8?q?d=20format=20w/=20prettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CreateBlueprintForm.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/components/CreateBlueprintForm.tsx b/src/components/CreateBlueprintForm.tsx index e0f592a1..b60762d0 100644 --- a/src/components/CreateBlueprintForm.tsx +++ b/src/components/CreateBlueprintForm.tsx @@ -88,12 +88,13 @@ export default function CreateBlueprintForm({ if (!isValid) return; const res = await api - .put< - AxiosResponse - >(`/org/${orgId}/blueprint/`, { - name: form.getValues("name"), - blueprint: form.getValues("contents") - }) + .put>( + `/org/${orgId}/blueprint/`, + { + name: form.getValues("name"), + blueprint: form.getValues("contents") + } + ) .catch((e) => { toast({ variant: "destructive", @@ -132,9 +133,6 @@ export default function CreateBlueprintForm({ render={({ field }) => ( {t("name")} - - {t("blueprintNameDescription")} -