Fix formatting

This commit is contained in:
Ola Hungerford
2025-02-28 07:34:01 -07:00
parent 36aa7316ea
commit e7f55f083f

View File

@@ -214,7 +214,10 @@ const ToolsTab = ({
description: prop.description, description: prop.description,
items: prop.items, items: prop.items,
}} }}
value={(params[key] as JsonValue) ?? (prop.type === "array" ? [] : {})} value={
(params[key] as JsonValue) ??
(prop.type === "array" ? [] : {})
}
onChange={(newValue: JsonValue) => { onChange={(newValue: JsonValue) => {
setParams({ setParams({
...params, ...params,