mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #1220 from appwrite/chore-update-support-window
Update support window
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ export function isSupportOnline() {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (hour < 9 || hour > 17) {
|
||||
if (hour < 14) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user