From cfbe1086298a28e56bae478a086bd934ce9cb2e7 Mon Sep 17 00:00:00 2001 From: R Date: Mon, 30 Jan 2023 12:20:14 +0700 Subject: [PATCH] Remove error sting --- Modules/Internal/Services/MemberEnrollmentService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Internal/Services/MemberEnrollmentService.php b/Modules/Internal/Services/MemberEnrollmentService.php index 6a02eb89..7d9fe8c0 100755 --- a/Modules/Internal/Services/MemberEnrollmentService.php +++ b/Modules/Internal/Services/MemberEnrollmentService.php @@ -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;