From 56b7ca9ad67cbe3d147eb223e3a8df0650111fa9 Mon Sep 17 00:00:00 2001 From: Chirag Chhatrala <60499540+chiragchhatrala@users.noreply.github.com> Date: Thu, 18 Apr 2024 13:59:02 +0530 Subject: [PATCH] fix store signature (#381) --- app/Jobs/Form/StoreFormSubmissionJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Form/StoreFormSubmissionJob.php b/app/Jobs/Form/StoreFormSubmissionJob.php index cb98e4b3..ef2f1814 100644 --- a/app/Jobs/Form/StoreFormSubmissionJob.php +++ b/app/Jobs/Form/StoreFormSubmissionJob.php @@ -144,7 +144,7 @@ class StoreFormSubmissionJob implements ShouldQueue } // For Singrature - if ($this->form->is_pro && $field['type'] == 'signature') { + if ($field['type'] == 'signature') { $finalData[$field['id']] = $this->storeSignature($answerValue); }