Skip to content

Commit c24af91

Browse files
committed
Fix for wrong conform function being used
1 parent e39eeeb commit c24af91

File tree

1 file changed

+1
-1
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.environment-variables.new

1 file changed

+1
-1
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.environment-variables.new/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ function VariableFields({
548548
type="button"
549549
onClick={() => {
550550
requestIntent(formRef.current ?? undefined, list.append(variablesFields.name));
551-
list.append(variablesFields.name, { defaultValue: [{ key: "", value: "" }] });
551+
append([{ key: "", value: "" }]);
552552
}}
553553
LeadingIcon={PlusIcon}
554554
>

0 commit comments

Comments
 (0)