diff --git a/public/static/faq.html b/public/static/faq.html
index 2a8def80..2e0cdea3 100644
--- a/public/static/faq.html
+++ b/public/static/faq.html
@@ -96,6 +96,15 @@ Can you deliver anywhere in the Philippines?
Not yet. Res-Q is offered initially in Metro Manila only.
+
+My battery was pulled out and is being recharged in an outlet. How do I follow-up when I can take my battery back?
+
+
+Please call our hotline at (02) 370-6686.
+
+
+
+
How do I contact you for questions or feedback?
@@ -110,6 +119,14 @@ In case of overheating, will RES-Q services include replacement of hoses, or qui
No, RES-Q roadside assistance for overheating only includes the addition of coolant/water to your radiator, to get you back on the road and to a nearest car service center.
+
+In case of a flat tire, will RES-Q services include vulcanizing?
+
+
+RES-Q tire assistance only includes help in replacing a flat tire using your functional spare tire.
+
+
+
How long will it take to fix a flat tire?
diff --git a/src/Controller/JobOrderController.php b/src/Controller/JobOrderController.php
index 72f0c70a..61630861 100644
--- a/src/Controller/JobOrderController.php
+++ b/src/Controller/JobOrderController.php
@@ -889,7 +889,7 @@ class JobOrderController extends BaseController
$this->fillFormTags($params);
// get closest hubs
- $hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 30, date("H:i:s"));
+ $hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 50, date("H:i:s"));
$params['hubs'] = [];
@@ -1452,7 +1452,7 @@ class JobOrderController extends BaseController
$this->fillFormTags($params);
// get closest hubs
- $hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 30, date("H:i:s"));
+ $hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 50, date("H:i:s"));
$params['status_cancelled'] = JOStatus::CANCELLED;
$params['hubs'] = [];
diff --git a/src/Ramcar/TicketType.php b/src/Ramcar/TicketType.php
index 0e1fd865..3edc9c89 100644
--- a/src/Ramcar/TicketType.php
+++ b/src/Ramcar/TicketType.php
@@ -10,6 +10,7 @@ class TicketType extends NameValue
const BILLING = 'billing';
const OTHER = 'other';
const FOR_FOLLOW_UP = 'for_follow_up';
+ const RESQ_INQUIRY = 'resq_inquiry';
const COLLECTION = [
'complaint' => 'Complaint',
@@ -18,6 +19,6 @@ class TicketType extends NameValue
'billing' => 'Billing',
'other' => 'Other',
'for_follow_up' => 'For follow-up',
-
+ 'resq_inquiry' => 'RESQ Inquiry',
];
}