Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 02:06:20 +00:00
co-authored by renee-png
parent 0de9320e0d
commit ebb391d556
+7 -1
View File
@@ -330,7 +330,13 @@ export function CustomFormBuilder() {
if (selectedCaseId) {
customValues = await fetchCaseCustomValues(selectedCaseId);
}
return { client, homeowner, firmName: firm?.company_name ?? "", customValues };
return {
client,
homeowner,
firmName: firm?.company_name ?? "",
customValues,
fieldValues,
};
};
const renderTitle = (ctx: any) => applyVariables(title, ctx);