Remove error sting

This commit is contained in:
R
2023-01-30 12:20:14 +07:00
parent a8821dfb3c
commit cfbe108629

View File

@@ -1020,7 +1020,7 @@ class MemberEnrollmentService
$cells = [];
foreach ($this->result_doc_headers as $header) {
$value = $row_data[$this->doc_headers_to_field_map[$header]] ?? null;
$cells[] = WriterEntityFactory::createCell(is_string($value) ? $value : 'error not string');
$cells[] = WriterEntityFactory::createCell(is_string($value) ? $value : null);
}
return $cells;