diff --git a/src/components/forms/custom-form-builder.tsx b/src/components/forms/custom-form-builder.tsx index d6a3fda..7d62289 100644 --- a/src/components/forms/custom-form-builder.tsx +++ b/src/components/forms/custom-form-builder.tsx @@ -261,6 +261,8 @@ export function CustomFormBuilder() { const [firm, setFirm] = useState(null); const [search, setSearch] = useState(""); const [customDefs, setCustomDefs] = useState([]); + const [clientCustomDefs, setClientCustomDefs] = useState([]); + const [clientCustomValues, setClientCustomValues] = useState>({}); const [fontFamily, setFontFamily] = useState("Bookman Old Style"); const [fontSize, setFontSize] = useState(12); const [lineHeight, setLineHeight] = useState(1.5);