fix all pylint warnings, add tests (wip) fix recap

This commit is contained in:
2026-03-06 00:00:01 +01:00
parent 60812652cf
commit b4b4fa7643
25 changed files with 845 additions and 376 deletions

View File

@@ -26,6 +26,9 @@ export function ContractModal({ opened, onClose, handleSubmit }: ContractModalPr
});
const formSelect = useMemo(() => {
if (!allForms) {
return [];
}
return allForms?.map((form) => ({
value: String(form.id),
label: `${form.season} ${form.name}`,