diff --git a/ui/src/components/EnvVarEditor.tsx b/ui/src/components/EnvVarEditor.tsx index 01df6d55..39790ba9 100644 --- a/ui/src/components/EnvVarEditor.tsx +++ b/ui/src/components/EnvVarEditor.tsx @@ -2,6 +2,7 @@ import { useEffect, useRef, useState } from "react"; import type { CompanySecret, EnvBinding } from "@paperclipai/shared"; import { X } from "lucide-react"; import { cn } from "../lib/utils"; +import { Textarea } from "./ui/textarea"; const inputClass = "w-full rounded-md border border-border px-2.5 py-1.5 bg-transparent outline-none text-sm font-mono placeholder:text-muted-foreground/40"; @@ -212,8 +213,9 @@ export function EnvVarEditor({ ) : ( <> - updateRow(index, { plainValue: event.target.value })}