From a967b0dc63515574a80b19e6a2b82ae6fd8113b0 Mon Sep 17 00:00:00 2001 From: Bentlybro Date: Tue, 3 Feb 2026 11:57:07 +0000 Subject: [PATCH] style: format --- .../frontend/src/components/atoms/FileInput/FileInput.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autogpt_platform/frontend/src/components/atoms/FileInput/FileInput.tsx b/autogpt_platform/frontend/src/components/atoms/FileInput/FileInput.tsx index ca4e5fefbc..2677a7483b 100644 --- a/autogpt_platform/frontend/src/components/atoms/FileInput/FileInput.tsx +++ b/autogpt_platform/frontend/src/components/atoms/FileInput/FileInput.tsx @@ -109,7 +109,10 @@ export function FileInput(props: Props) { if (val && typeof val === "object") { const obj = val as Record; if (typeof obj.name === "string") { - return getFileLabel(obj.name, typeof obj.type === "string" ? obj.type : ""); + return getFileLabel( + obj.name, + typeof obj.type === "string" ? obj.type : "", + ); } if (typeof obj.type === "string") { const mimeParts = obj.type.split("/");