Merge pull request #1220 from appwrite/chore-update-support-window

Update support window
This commit is contained in:
Christy Jacob
2024-07-22 12:04:28 +04:00
committed by GitHub
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
$organization?.billingPlan === BillingPlan.PRO ||
$organization?.billingPlan === BillingPlan.SCALE;
$: supportTimings = `${utcHourToLocaleHour('09:00')} - ${utcHourToLocaleHour('17:00')} ${localeTimezoneName()}`;
$: supportTimings = `${utcHourToLocaleHour('16:00')} - ${utcHourToLocaleHour('00:00')} ${localeTimezoneName()}`;
</script>
{#if isCloud}
+2 -2
View File
@@ -84,8 +84,8 @@
$wizard.finalAction = handleSubmit;
const workTimings = {
start: '09:00',
end: '17:00',
start: '16:00',
end: '00:00',
startDay: 'Monday' as WeekDay,
endDay: 'Friday' as WeekDay
};
+1 -1
View File
@@ -22,7 +22,7 @@ export function isSupportOnline() {
return false;
}
if (hour < 9 || hour > 17) {
if (hour < 14) {
return false;
}